JuneTools.LocalStorageValue.ToString C# (CSharp) Method

ToString() public method

Returns a System.String that represents the current JuneTools.LocalStorageValue.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return string.Format ("[LocalStorageValue: Name={0}, Value={1}, Type={2}, IntValue={3}, FloatValue={4}, StringValue={5}]", Name, Value, Type, IntValue, FloatValue, StringValue);
        }