コード例 #1
0
 public CsvRow(Csv csv)
 {
     this._key = new string[csv.ColumnLength];
     string[] keyList = csv.GetKeyList();
     this._column = new List <CsvValue>();
     for (int i = 0; i < csv.ColumnLength; i++)
     {
         this._key[i] = keyList[i];
         this._column.Add(new CsvValue());
     }
 }
コード例 #2
0
ファイル: Csv.cs プロジェクト: msruzy/digimon-linkz-client
 public void CopyTo(Csv csv)
 {
     this.Initialize(csv.RowLength, csv.GetKeyList());
     for (int i = 0; i < csv.RowLength; i++)
     {
         for (int j = 0; j < csv.ColumnLength; j++)
         {
             this[j, i] = new CsvValue(csv[j, i]);
         }
     }
 }
コード例 #3
0
ファイル: Csv.cs プロジェクト: msruzy/digimon-linkz-client
 public Csv(Csv csv)
 {
     this.Initialize(csv.RowLength, csv.GetKeyList());
     for (int i = 0; i < this.ColumnLength; i++)
     {
         for (int j = 0; j < this.RowLength; j++)
         {
             this[i, j] = new CsvValue(csv[i, j]);
         }
     }
 }
コード例 #4
0
ファイル: Csv.cs プロジェクト: msruzy/digimon-linkz-client
 public bool CheckMachKey(Csv csv)
 {
     return(this.CheckMachKey(csv.GetKeyList()));
 }