コード例 #1
0
ファイル: Matrix.cs プロジェクト: aleffnull/Checker
 public Matrix(int rowCount, int columnCount)
 {
     for (int i = 0; i < rowCount; i++)
     {
         Vector row = new Vector(columnCount);
         rows.Add(row);
     }
 }
コード例 #2
0
ファイル: Matrix.cs プロジェクト: aleffnull/Checker
 public void LoadLine(string line)
 {
     Vector row = new Vector(line);
     rows.Add(row);
 }