AvalonStudio.TextEditor.Document.TextUtilities.IsNewLine C# (CSharp) Метод

IsNewLine() публичный статический Метод

Gets whether the specified string is a newline sequence.
public static IsNewLine ( string newLine ) : bool
newLine string
Результат bool
		public static bool IsNewLine(string newLine)
		{
			return newLine == "\r\n" || newLine == "\n" || newLine == "\r";
		}