gpt4 book ai didi

c# - 如何使用 codedom 创建方法签名中包含 'new' 关键字的方法

转载 作者:行者123 更新时间:2023-12-02 17:39:45 25 4
gpt4 key购买 nike

我想使用 codedom 动态生成一个方法签名中带有“new”关键字的方法。想要生成这样的东西

private new void MyMethod()
{

}

最佳答案

类似于:

CodeMemberMethod myMethodMethod = new CodeMemberMethod();
myMethodMethod.Attributes = MemberAttributes.Private | MemberAttributes.New;
myMethodMethod.Name = "MyMethod";

它是一个MemberAttributes:MemberAttributes.New

关于c# - 如何使用 codedom 创建方法签名中包含 'new' 关键字的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35748901/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com