Axiom.RenderSystems.OpenGL.ATI.Compiler2Pass.SkipWhitespace C# (CSharp) Метод

SkipWhitespace() защищенный Метод

Skip all the whitespace which includes spaces and tabs.
protected SkipWhitespace ( ) : void
Результат void
		protected void SkipWhitespace()
		{
			if ( charPos == endOfSource )
			{
				return;
			}

			// FIX - this method kinda slow
			while ( charPos != endOfSource && ( ( source[ charPos ] == ' ' ) || ( source[ charPos ] == '\t' ) ) )
			{
				charPos++; // find first non white space character
			}
		}