7 references to Substring
Microsoft.Build.Tasks.Core (2)
tokenCharReader.cs (2)
129return _sources.Substring(startPosition, _position - startPosition); 157string compare = _sources.Substring(_position, match.Length);
Microsoft.Build.Tasks.UnitTests (5)
StreamMappedString_Tests.cs (5)
107Assert.Equal("bcd", s.Substring(1, 3)); 116Assert.Equal("bcd", s.Substring(1, 3)); 129Assert.Equal("abcxdef", s.Substring(0, 7)); 140Assert.Equal(String.Empty, s.Substring(1, 30)); 153Assert.Equal("abc", s.Substring(0, 3));