Portable.Xaml.ParsedMarkupExtensionInfo.SubstringWithEscape C# (CSharp) Method

SubstringWithEscape() private method

private SubstringWithEscape ( string s, int startIndex, char escape ) : string
s string
startIndex int
escape char
return string
		string SubstringWithEscape (string s, int startIndex, char? escape)
		{
			return SubstringWithEscape (s, startIndex, s.Length - startIndex, escape);
		}

Same methods

ParsedMarkupExtensionInfo::SubstringWithEscape ( string s, int startIndex, int numCharacters, char escape ) : string