Mono.CSharp.CSharpCodeGenerator.GenerateThrowExceptionStatement C# (CSharp) 메소드

GenerateThrowExceptionStatement() 보호된 메소드

protected GenerateThrowExceptionStatement ( CodeThrowExceptionStatement statement ) : void
statement CodeThrowExceptionStatement
리턴 void
		protected override void GenerateThrowExceptionStatement (CodeThrowExceptionStatement statement)
		{
			Output.Write ("throw");
			if (statement.ToThrow != null) {
				Output.Write (' ');
				GenerateExpression (statement.ToThrow);
			}
			Output.WriteLine (";");
		}
CSharpCodeGenerator