Advertisement
Guest User

Untitled

a guest
Mar 30th, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1.         unsafe static void Main(string[] args)
  2.         {
  3.             fixed (int* t = new int[] { 1819043176, 1870078063, 6581362 })
  4.             {
  5.                 byte* c = (byte*)t;
  6.                 while (*c != 0)
  7.                 {
  8.                     Console.Write((char)*c);
  9.                     c++;
  10.                 }
  11.  
  12.             }
  13.             Console.ReadKey();
  14.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement