Jurassic.Library.PropertyDescriptor.ToString C# (CSharp) 메소드

ToString() 공개 메소드

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