2 overrides of Length
Microsoft.CodeAnalysis (2)
Collections\Rope.cs (2)
108public override int Length => _value.Length; 118public override int Length { get; }
12 references to Length
Microsoft.CodeAnalysis (12)
Collections\Rope.cs (10)
48r1.Length == 0 ? r2 : 49r2.Length == 0 ? r1 : 50checked(r1.Length + r2.Length < 32) ? ForString(r1.ToString() + r2.ToString()) : 59if (!(obj is Rope other) || Length != other.Length) 61if (Length == 0) 76int result = Length; 124Length = checked(left.Length + right.Length);
ConstantValueSpecialized.cs (2)
217int formatLength = RopeValue.Length; 223return formatLength < RopeValue.Length ?