ABB.Swum.Nodes.VariableDeclarationNode.ToString C# (CSharp) Méthode

ToString() public méthode

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