Created
March 12, 2015 12:06
-
-
Save jakobz/52113057230f8d5cbfb2 to your computer and use it in GitHub Desktop.
.NET Questions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ClassA { | |
| public ClassB B { get; set; } | |
| } | |
| class ClassB { | |
| public ClassA A { get; set; } | |
| } | |
| ClassA a = new ClassA(); | |
| ClassB b = new ClassB(); | |
| a.B = b; | |
| b.A = a; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment