Skip to content

Instantly share code, notes, and snippets.

@JamesTryand
Created July 25, 2013 16:56
Show Gist options
  • Select an option

  • Save JamesTryand/6081690 to your computer and use it in GitHub Desktop.

Select an option

Save JamesTryand/6081690 to your computer and use it in GitHub Desktop.
A quick template to get on with stuff...
class Program
{
public static void L()
{
Console.WriteLine();
}
public static void L(string message)
{
Console.WriteLine(message);
}
public static void L(string message, params object[] arg)
{
Console.WriteLine(message,arg);
}
static void Main(string[] args)
{
L("START");
var w = new Worker();
w.Work();
L("END");
Console.ReadLine();
}
}
public class Worker
{
public void Work()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment