コード例 #1
0
ファイル: Slice.cs プロジェクト: RapidScada/scada-v6
 /// <summary>
 /// Initializes a new instance of the class.
 /// </summary>
 public Slice(DateTime timestamp, int[] cnlNums)
 {
     Timestamp = timestamp;
     CnlNums   = cnlNums ?? throw new ArgumentNullException(nameof(cnlNums));
     CnlData   = new CnlData[cnlNums.Length];
 }
コード例 #2
0
ファイル: Slice.cs プロジェクト: RapidScada/scada-v6
 /// <summary>
 /// Initializes a new instance of the class.
 /// </summary>
 public Slice(DateTime timestamp, int cnlCnt)
 {
     Timestamp = timestamp;
     CnlNums   = new int[cnlCnt];
     CnlData   = new CnlData[cnlCnt];
 }