Base:
2 overrides of ToString
Microsoft.CodeAnalysis (2)
Collections\Rope.cs (2)
91public override string ToString() => _value; 128public override string ToString()
11 references to ToString
Microsoft.CodeAnalysis (3)
Collections\Rope.cs (2)
51checked(r1.Length + r2.Length < 32) ? ForString(r1.ToString() + r2.ToString()) :
ConstantValueSpecialized.cs (1)
183constantValue = _value.ToString();
Microsoft.CodeAnalysis.UnitTests (8)
Collections\RopeTests.cs (8)
39Assert.Equal(string.Empty, r.ToString()); 59Assert.Equal(s, Rope.ForString(s).ToString()); 76string s = r1.ToString() + r2.ToString() + r3.ToString(); 77Assert.Equal(c1.ToString(), s); 78Assert.Equal(c2.ToString(), s); 83Assert.Equal(c3.ToString(), s);