L
Luigi
Hi all,
I have a List of object Column, and the class Column has 2 properties:
a name (string) and a enum (type, normal or total).
public class Column
{
private string columnName;
public string ColumnName
{
get { return columnName; }
set { columnName = value; }
}
public ColumnType columnType;
public enum ColumnType : short { Normal = 0, Total = 1 };
}
How can I obtain the element of the List having a "columnName" (so I can get
the type of this columnName)?
Thank a lot.
I have a List of object Column, and the class Column has 2 properties:
a name (string) and a enum (type, normal or total).
public class Column
{
private string columnName;
public string ColumnName
{
get { return columnName; }
set { columnName = value; }
}
public ColumnType columnType;
public enum ColumnType : short { Normal = 0, Total = 1 };
}
How can I obtain the element of the List having a "columnName" (so I can get
the type of this columnName)?
Thank a lot.