Spotify.NET/DebugExample/Program.cs

21 lines
387 B
C#
Raw Normal View History

2014-01-07 15:26:03 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SpotifyAPIv1;
using System.Threading;
namespace DebugExample
{
class Program
{
static void Main(string[] args)
{
SpotifyAPI test = new SpotifyAPI();
test.Connect();
Thread.Sleep(-1);
}
}
}