Exemplo n.º 1
0
 public TestNode(TestNode parent, string id)
 {
     Content = new TestData((TestData)parent?.Content, id);
 }
Exemplo n.º 2
0
 public TestNode(TestNode parent, string id) {
     Content = new TestData((TestData)parent?.Content, id);
 }
Exemplo n.º 3
0
 public static int ComparisonById(TestNode left, TestNode right)
 {
     return(string.CompareOrdinal(left.TestData.Id, right.TestData.Id));
 }
Exemplo n.º 4
0
 public static int ComparisonById(TestNode left, TestNode right) {
     return string.CompareOrdinal(left.TestData.Id, right.TestData.Id);
 }