Advertisement
Fhernd

OcultamientoNombres.cs

Nov 12th, 2017
751
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. namespace Exterior
  2. {
  3.     class Clase1
  4.     {
  5.         // ...
  6.     }
  7.  
  8.     namespace Interior
  9.     {
  10.         class Clase1
  11.         {
  12.             // ...
  13.         }
  14.  
  15.         class Test
  16.         {
  17.             static void Main()
  18.             {
  19.                 Clase1 objeto1;
  20.                 Exterior.Clase1 objeto2;
  21.             }
  22.         }
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement