2 writes to Height
Microsoft.CodeAnalysis.CodeStyle (2)
IntervalTree`1.Node.cs (2)
25
this.
Height
= 1;
35
this.
Height
= 1 + Math.Max(Height(left), Height(right));
1 reference to Height
Microsoft.CodeAnalysis.CodeStyle (1)
IntervalTree`1.cs (1)
361
=> node == null ? 0 : node.
Height
;