System.Runtime.Serialization.Plists.BinaryPlistItem.ToString C# (CSharp) Method

ToString() public method

Gets the string representation of this instance.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return this.Value != null ? this.Value.ToString() : "null";
        }