Skip to content

Instantly share code, notes, and snippets.

@jakobz
Created March 12, 2015 12:06
Show Gist options
  • Select an option

  • Save jakobz/52113057230f8d5cbfb2 to your computer and use it in GitHub Desktop.

Select an option

Save jakobz/52113057230f8d5cbfb2 to your computer and use it in GitHub Desktop.
.NET Questions
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