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

IsWhitespace() private method

private IsWhitespace ( char c ) : bool
c char
return bool
		private bool IsWhitespace( char c )
		{
			return c == ' ' || c == '\r' || c == '\t';
		}