2014-02-01 12:52:33 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
2015-07-07 17:11:11 +01:00
|
|
|
|
namespace SpotifyAPI.Example
|
2014-02-01 12:52:33 +00:00
|
|
|
|
{
|
2015-10-23 20:25:13 +01:00
|
|
|
|
internal static class Program
|
2014-02-01 12:52:33 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Der Haupteinstiegspunkt für die Anwendung.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[STAThread]
|
2015-10-23 20:25:13 +01:00
|
|
|
|
private static void Main()
|
2014-02-01 12:52:33 +00:00
|
|
|
|
{
|
|
|
|
|
Application.EnableVisualStyles();
|
|
|
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
2015-07-07 17:11:11 +01:00
|
|
|
|
Application.Run(new ExampleForm());
|
2014-02-01 12:52:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-23 20:25:13 +01:00
|
|
|
|
}
|