ABB.Swum.Nodes.VariableDeclarationNode.ToString C# (CSharp) Method

ToString() public method

Creates a string representation, consisting of the type and the variable name.
public ToString ( ) : string
return string
        public override string ToString() {
            return string.Format("[{0} - {1}]", Type.ToString(), base.ToString());
        }
    }