示例#1
0
 public PhysicalRow(int rowCount, PhysicalColumn.DataTypeEnum dataType)
 {
     if(dataType == PhysicalColumn.DataTypeEnum.Number)
         NumericData = new double[rowCount];
     else
         TextData = new string[rowCount];
 }
示例#2
0
 public Variable(string name, TypeEnum type, PhysicalColumn.DataTypeEnum _dataType)
 {
     Name = name;
     Type = type;
     dataType = _dataType;
     Tree.VariableL.Add(this);
 }
示例#3
0
 public PhysicalColumn(string colName, int rowCount, PhysicalColumn.DataTypeEnum dataType)
 {
     Name = colName;
     DataType = dataType;
     Row = new PhysicalRow(rowCount, DataType);
 }
示例#4
0
 public void AddCol(int colIndex, string colName, int rowCount, PhysicalColumn.DataTypeEnum dataType)
 {
     Col[colIndex] = new PhysicalColumn(colName, rowCount, dataType);
 }