WCF - 在编译或运行时期间提供类DataContract

时间:2013-11-07 20:32:33

标签: wcf datacontract reflection.emit mono.cecil bytecode-manipulation

如果我有代码:

public class Person
{
    public string FirstName { get; set; }
    public string LastName { get; set; }
}

如何在运行时或编译时将其转换为下面的代码?

[DataContract]
public class Person
{
    [DataMember]
    public string FirstName { get; set; }
    [DataMember]
    public string LastName { get; set; }
}

我可以使用DynamicProxy执行此操作吗?塞西尔?还是其他一些开源项目?

0 个答案:

没有答案