Axiom.Scripting.Compiler.Parser.ScriptLexer.IsNewline C# (CSharp) Method

IsNewline() private method

private IsNewline ( char c ) : bool
c char
return bool
		private bool IsNewline( char c )
		{
			return c == '\n';
		}
	}