Axiom.Scripting.ParseHelper.SkipToNextOpenBrace C# (CSharp) Méthode

SkipToNextOpenBrace() public static méthode

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