CSharpUtils.Templates.ParserNodes.ParserNodeBinaryOperation.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);
			LeftNode.Dump(Level + 1, "Left");
			RightNode.Dump(Level + 1, "Right");
		}