BuildingsIterator.Statistics.Sample.Sample C# (CSharp) 메소드

Sample() 공개 메소드

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