Jurassic.Library.PropertyDescriptor.ToString C# (CSharp) Method

ToString() public method

Gets the property value, calling the get accessor, if present. Returns a string representing the current object.
public ToString ( ) : string
return string
        public override string ToString()
        {
            if (this.Value == null)
                return "null";
            return this.Value.ToString();
        }