Mono.TextTemplating.Tokeniser.IsNewLine C# (CSharp) Метод

IsNewLine() приватный Метод

private IsNewLine ( ) : int
Результат int
		int IsNewLine() {
			int found = 0;

			if (position < content.Length && content[position] == '\r') {
				found++;
			}
			if (position+found < content.Length && content[position+found] == '\n') {
				found++;
			}
			return found;
		}