GetValuesFromDictionary() public static method

Gets the values from dictionary.
public static GetValuesFromDictionary ( object>.IDictionary dictionary ) : List
dictionary object>.IDictionary Dictionary.
return List
        /// <summary>
        /// Refreshs the data.
        /// </summary>
        private void RefreshData()
        {
            if (null != this.VALUES)
            {
                this.VALUES.Clear();
            }
            var dictionary = LocalStore.Instance.GetSerializedData();

            if (null != dictionary)
            {
                this.VALUES = LocalStorageValue.GetValuesFromDictionary(dictionary);
            }
        }