Spotify.NET/SpotifyAPI.Example/ExampleForm.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

12 lines
204 B
C#

using System.Windows.Forms;
namespace SpotifyAPI.Example
{
public partial class ExampleForm : Form
{
public ExampleForm()
{
InitializeComponent();
}
}
}