Quickstarts.TestData.GetProcessedValues C# (CSharp) Метод

GetProcessedValues() публичный Метод

Returns the values in the specified processed dataset.
public GetProcessedValues ( ProcessedDataSetType dataset ) : DataValue>.SortedDictionary
dataset ProcessedDataSetType
Результат DataValue>.SortedDictionary
        public SortedDictionary<DateTime, DataValue> GetProcessedValues(ProcessedDataSetType dataset)
        {
            if (dataset != null)
            {
                return ToDataValues(dataset.Values);
            }

            return new SortedDictionary<DateTime,DataValue>();
        }