Beispiel #1
0
        public double GetAverageValue(String DataType)
        {
            HistoryData TrendLine;

            m_DataHistoryArray.TryGetValue(DataType, out TrendLine);
            if (TrendLine != null)
            {
                return(TrendLine.GetAverageValue());
            }

            return(0);
        }