使用 CodeDom 指定类型别名

发布于 2024-10-17 12:24:11 字数 429 浏览 0 评论 0原文

我正在使用 CodeDom 动态生成一些 C# 代码。我想向命名空间添加类型别名。就像:

namespace MyNameSpace
{
   using Timer = System.Threading.Timer; 
   ...
}

我能够创建名称空间,但不知道如何创建类型别名。到目前为止的代码:

CodeCompileUnit unitCompile = new CodeCompileUnit();
CodeNamespace nsScript = new CodeNamespace("MyNamespace");
unitCompile.Namespaces.Add(nsScript);

如何添加“using Timer = System.Threading.Timer;”命名空间的声明?

I am dynamically generating some c# code using the CodeDom. I want to ad a type alias to the namespace. Something like:

namespace MyNameSpace
{
   using Timer = System.Threading.Timer; 
   ...
}

I'm able to create the namespace but do not know how to create the type alias. Code so far:

CodeCompileUnit unitCompile = new CodeCompileUnit();
CodeNamespace nsScript = new CodeNamespace("MyNamespace");
unitCompile.Namespaces.Add(nsScript);

How to add the "using Timer = System.Threading.Timer;" statement to the namespace?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘿看小鸭子会跑 2024-10-24 12:24:11

您可以直接在CodeNamespaceImport类中使用。

CodeNamespaceImport cd = 
    new CodeNamespaceImport("Timer = System.Threading.Timer");

它将生成这样的类。

using Timer = System.Threading.Timer;

我尝试使用 VB.Net,它可以工作。我没有尝试使用 C#。

You can directly use in the CodeNamespaceImport class.

CodeNamespaceImport cd = 
    new CodeNamespaceImport("Timer = System.Threading.Timer");

It will generate classes like this.

using Timer = System.Threading.Timer;

I tried with VB.Net and it works. I didn't try with C#.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文