Files
PocketSharp/PocketSharp.Console/Program.cs
T

20 lines
493 B
C#

using System;
namespace PocketSharp.Console
{
class Program
{
static void Main(string[] args)
{
System.Console.WriteLine("PocketClient internal usage tests");
System.Console.WriteLine("---------------------------------");
// this apiKey is just for demonstration purposes
// please create your own application and retrieve it's key. It's a 1-step process ;-)
PocketClient client = new PocketClient();
System.Console.ReadKey();
}
}
}