Created
July 25, 2013 16:56
-
-
Save JamesTryand/6081690 to your computer and use it in GitHub Desktop.
A quick template to get on with stuff...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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