mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
3544c34176
Changed use of nullable return types to throw exceptions instead of returning null
19 lines
460 B
C#
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());
|
|
}
|
|
}
|
|
} |