Advertisement
nahidjamalli

Lesson #4

Mar 1st, 2020
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.48 KB | None | 0 0
  1. using System;
  2.  
  3. namespace testt
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             int a;
  10.  
  11.             // STATEMENT
  12.             // regular
  13.             {
  14.                 int a;
  15.             }
  16.  
  17.             // complex
  18.             {
  19.  
  20.             }
  21.  
  22.             /*
  23.              * 1. Localization
  24.              * 2. Grouping
  25.              */
  26.  
  27.             {
  28.                 int a;
  29.             }
  30.  
  31.             Console.WriteLine(a);
  32.         }
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement