JuneTools.LocalStorageValue.GetStrValue C# (CSharp) Method

GetStrValue() private method

Gets the string value.
private GetStrValue ( object value ) : string
value object Value.
return string
        private string GetStrValue(object value)
        {
            return (null != value) ? value.ToString () : string.Empty;
        }