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

ReadUntil() private method

private ReadUntil ( char ch, bool readToEnd = false, bool skip = true, char escape = null ) : string
ch char
readToEnd bool
skip bool
escape char
return string
		string ReadUntil (char ch, bool readToEnd = false, bool skip = true, char? escape = null)
		{
			return ReadUntil (new [] { ch }, readToEnd, skip, escape);
		}