CSLE.CLS_Content.DumpValue C# (CSharp) Method

DumpValue() public method

public DumpValue ( ) : string
return string
		public string DumpValue()
		{
			string svalues = "";
            if (this.stackContent != null)
            {
                foreach (var subc in this.stackContent)
                {
                    svalues += subc.DumpValue();
                }
            }
            svalues += "DumpValue:" + this.CallName + "\n";
            foreach(var v in this.values)
            {
                svalues += "V:" + v.Key + "=" + v.Value.ToString()+"\n";
            }
			return svalues;
		}
		public string DumpStack(IList<Token> tokenlist)