这就是我想要的结果类声明如下所示:

public sealed partial class Refund : DataObjectBase<Refund>
 {
}

}
此代码(摘要):
targetClass = new CodeTypeDeclaration(className);
            targetClass.IsClass = true;
            targetClass.TypeAttributes =
                TypeAttributes.Public | TypeAttributes.Sealed;
            targetClass.IsPartial = true; //partial so that genn'ed code can be safely modified
            targetClass.TypeParameters.Add(new CodeTypeParameter{ Name=className});
            targetClass.BaseTypes.Add(new CodeTypeReference { BaseType = "DataObjectBase", Options = CodeTypeReferenceOptions.GenericTypeParameter });

产生该类声明:
public sealed partial class Refund<Refund> : DataObjectBase
 {
}

我究竟做错了什么?

最佳答案

我认为BaseType的以下字符串应该可以解决这个问题(未经测试):

"DataObjectBase`1[[Refund]]"


您可能需要为Refund提供完全限定的名称,至少包括程序集名称:

"DataObjectBase`1[[Refund, RefundAssembly]]"


然后,您应该删除行targetClass.TypeParameters.Add(...)

关于c# - 如何创建从另一个继承并在CodeDom中传递类型参数的类?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1348268/

10-13 04:03