如果我有這樣的字符串列表:怎麼投這個字符串列表對象
其中string myObjectString = "MyObject, SetWidth, int, 10, 0, 1";
:
- MyObject: the object class
- SetWidth: the property of the object
- int: type of the SetWidth is int
- 10: default value
- 0: object order
- 1: property order
那我該怎麼構建這樣一個對象:
[ObjectOrder(0)]
public class MyObject:
{
private int _SetWidth = 10;
[PropertyOrder(1)]
public int SetWidth
{
set{_SetWidth=value;}
get{return _SetWidth;}
}
}
所以,我想有這樣的事情:
Object myObject = ConstructAnObject(myObjectString);
和myObject
是MyObject
的實例。在C#中可能嗎?
在此先感謝。
等等......你想要既生成類又實例化它的一個實例嗎?或者你已經定義了類,並且你想實例化一個實例? – Jamiec 2012-02-16 10:16:54