| 发表于:2007-01-12 10:40:53 楼主 |
private string _type; [xmlattribute( "type ")] public string providertype { get { return _type; } set { _type = value; } } public object instance() { // string songnl=system.type.gettype(this.providertype).tostring(); return activator.createinstance(system.type.gettype(this.providertype)); } |
|
|
|
|