Advertisement
Guest User

Untitled

a guest
Dec 23rd, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using System;
  2.  
  3. #if DEBUG
  4. namespace TestBadFormating
  5. #endif
  6. {
  7.     // Some test code here bla baaa...
  8.     class MainClass
  9.     {
  10.         #if DEBUG2
  11.         public static void Main (string[] args)
  12.         #else
  13.         public static void Main (string[] args)
  14.         #endif
  15.         {
  16.             Console.WriteLine ("Hello World!");
  17.             if (0 == 0)
  18.             {
  19.                 Console.Write("Hello World!");
  20.             }
  21.         }
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement