Axiom.Scripting.ParseHelper.SkipToNextCloseBrace C# (CSharp) Method

SkipToNextCloseBrace() public static method

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