Advertisement
Fhernd

SolucionConflictoNamespaceClase.cs

Nov 12th, 2017
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. namespace N
  2. {
  3.     class A
  4.     {
  5.         static void Main()
  6.         {
  7.             System.Console.WriteLine (new A.B());
  8.             System.Console.WriteLine (new global::A.B());
  9.         }
  10.        
  11.         public class B
  12.         {
  13.             // ...
  14.         }
  15.     }
  16. }
  17.  
  18. namespace A
  19. {
  20.     class B
  21.     {
  22.         // ...
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement