Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace N
- {
- class A
- {
- static void Main()
- {
- System.Console.WriteLine (new A.B());
- System.Console.WriteLine (new global::A.B());
- }
- public class B
- {
- // ...
- }
- }
- }
- namespace A
- {
- class B
- {
- // ...
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement