BuildingsIterator.Statistics.Sample.Sample C# (CSharp) Method

Sample() public method

Initializes a new instance of the Sample class.
public Sample ( string name ) : System.Collections.Generic
name string /// The name. ///
return System.Collections.Generic
        public Sample(string name)
        {
            this.name = name;
            values = new List<double>();
        }