Axiom.Scripting.ParseHelper.SkipToNextCloseBrace C# (CSharp) Метод

SkipToNextCloseBrace() публичный статический Метод

Advances in the stream until it hits the next }.
public static SkipToNextCloseBrace ( TextReader reader ) : void
reader TextReader
Результат void
		public static void SkipToNextCloseBrace( TextReader reader )
		{
			string line = "";
			while ( line != null && line != "}" )
			{
				line = ReadLine( reader );
			}
		}