Dennisaa

Console App 01 template

Sep 23rd, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Sandbox {
  4.     public class Program {
  5.      
  6.         public static void Main() {
  7.             var p = new Program();
  8.             p.RunTheTest();
  9.         }
  10.         private void RunTheTest() {
  11.  
  12.  
  13.  
  14.             Console.WriteLine("That's all for now - press return twice");
  15.             Console.Read();
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment