/// <summary>
 /// Creates an instance of <see cref="AverageRateStatistics"/> for a specified <see cref-="RateStatistics"/> object.
 /// </summary>
 /// <param name="source">The <see cref-="RateStatistics"/> object based on which the new <see cref="AverageRateStatistics"/> object will be created</param>
 public AverageRateStatistics(RateStatistics source)
     : base(source)
 {
     _type = source.Type;
 }
示例#2
0
 /// <summary>
 /// Creates a copy of the original <see cref="RateStatistics"/> object.
 /// </summary>
 /// <param name="source">The original <see cref="RateStatistics"/> to copy </param>
 public RateStatistics(RateStatistics source)
     : base(source)
 {
     Type = source.Type;
 }