ICSharpCode.NRefactory.Ast.CatchClause.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return string.Format("[CatchClause TypeReference={0} VariableName={1} StatementBlock={2} Condition={3}]" +
                    "", TypeReference, VariableName, StatementBlock, Condition);
        }