CSharpUtils.Templates.ParserNodes.ParserNodeIf.Dump C# (CSharp) Method

Dump() public method

public Dump ( int Level, String Info = "" ) : void
Level int
Info String
return void
		public override void Dump(int Level = 0, String Info = "")
		{
			base.Dump(Level, Info);
			ConditionNode.Dump(Level + 1, "Condition");
			BodyIfNode.Dump(Level + 1, "IfBody");
			BodyElseNode.Dump(Level + 1, "ElseBody");
		}
ParserNodeIf