Advertisement
zippy1981

ExtraScope

Jul 7th, 2012
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.54 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApplication4
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             {
  10.                 var r = new Random();
  11.                 var i = r.Next(); ;
  12.                 Console.WriteLine("i = {0}", 0);
  13.             }
  14.  
  15.             {
  16.                 var i = r.Next(); ;
  17.                 Console.WriteLine("i = {0}", 0);
  18.             }
  19.  
  20.             Console.Write("Press Any Key To Continue . . .");
  21.             Console.ReadKey(false);
  22.             Console.WriteLine();
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement