1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| public class Column
{
private string name;
private string internalName;
//private Type datatype;
private List<Double> rows;
public Column(string ColmnName, string ColomnInternalName)
{
this.name = ColmnName;
this.internalName = ColomnInternalName;
// this.datatype = DataTypeName;
this.rows = new List<Double>();
}
public Column()
{
this.name = "";
this.internalName = "";
this.rows = new List<double>();
}
public Column(int Dim)
{
this.name = "";
this.internalName = "";
this.rows = new List<double>();
for (int i = 0; i < Dim; i++) this.Rows.Add(0);
} |
Partager