Advertisement
nahidjamalli

Lesson #3

Feb 27th, 2020
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.40 KB | None | 0 0
  1. namespace MyNamespace
  2. {
  3.     class MyProgram
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.  
  8.         }
  9.     }
  10. }
  11.  
  12. namespace MyNamespace
  13. {
  14.     class MyClass
  15.     {
  16.  
  17.     }
  18. }
  19.  
  20. namespace X
  21. {
  22.     // X.A1
  23.     namespace A1
  24.     {
  25.         // X.A1.A2
  26.         namespace A2
  27.         {
  28.  
  29.         }
  30.     }
  31.  
  32.     // X.A2
  33.     namespace A2
  34.     {
  35.  
  36.     }
  37. }
  38.  
  39. // DLL - Dynamic Link Library
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement