2
我有一個C#類這樣創建一個類,並在運行時裝飾它
public class Info
{
public string PropertyName;
public int PropertyLength;
}
,當我讀到一個文件,並獲取數據回類,它看起來像
List<Info> information=new List<Info>();
//代碼從文件中讀取數據並將其添加回列表
information - is a List collecting multiple entries...
0,1 - elements inside the list..
[0]
PropertyName - FirstName
PropertyLength - 25
[1]
PropertyName - LastName
PropertyLength - 50
我想根據上述結果在運行時生成一個類
public class GeneratedClass
{
[FieldLength(25)];
public string FirstName;
[FieldLength(50)];
public string LastName;
}
我如何裝飾它與比方說 - FieldLength參數在運行時間(這個值從另一個源來),以獲得如上所期望的結果?