Spotify.NET/SpotifyAPI.Example/Program.cs
mrnikbobjeff 3544c34176 Changed Contracts to if-throw-else as requested
Changed use of nullable return types to throw exceptions instead of returning null
2015-10-23 21:25:13 +02:00

19 lines
460 B
C#

using System;
using System.Windows.Forms;
namespace SpotifyAPI.Example
{
internal static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
private static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new ExampleForm());
}
}
}