Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace N
- {
- class A
- {
- public class B
- {
- // ...
- }
- static void Main()
- {
- new A.B(); // Instancia un objeto de la clase anidada B
- }
- }
- }
- namespace A
- {
- class B
- {
- // ...
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement