コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SetsStatistics{T}"/> class.
 /// </summary>
 /// <param name="storage">The storage.</param>
 public SetsStatistics(ISetsStorageProvider <T> storage)
 {
     this.storage = storage;
 }
コード例 #2
0
ファイル: SetStorage.cs プロジェクト: sotwarrior/InterviewPrj
 /// <summary>
 /// Initializes a new instance of the <see cref="SetStorage{T}"/> class.
 /// </summary>
 /// <param name="storage">The storage.</param>
 public SetStorage(ISetsStorageProvider <T> storage)
 {
     this.storage    = storage;
     this.Statistics = new SetsStatistics <T>(storage);
 }
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="IntagerSetStorage"/> class.
 /// </summary>
 /// <param name="storage">The storage.</param>
 public IntagerSetStorage(ISetsStorageProvider <int> storage) : base(storage)
 {
 }