Axiom.Scripting.ParseHelper.SkipToNextOpenBrace C# (CSharp) 메소드

SkipToNextOpenBrace() 공개 정적인 메소드

Advances in the stream until it hits the next {.
public static SkipToNextOpenBrace ( TextReader reader ) : void
reader TextReader
리턴 void
		public static void SkipToNextOpenBrace( TextReader reader )
		{
			string line = "";
			while ( line != null && line != "{" )
			{
				line = ReadLine( reader );
			}
		}