需要初始化对象的新实例

发布于 2024-11-29 14:57:14 字数 485 浏览 1 评论 0原文

以下代码:

        CodeVariableDeclarationStatement variableDeclaration = new CodeVariableDeclarationStatement(
            // Type of the variable to declare.
            typeof(string),
            // Name of the variable to declare.
            "TestString");

生成以下 VB.Net 语句:

Dim TestString As String

我需要进行哪些更改才能使其看起来像这样:

Dim TestString As New StringBuilder()

我对如何显示 NEW 关键字感兴趣。

The following code:

        CodeVariableDeclarationStatement variableDeclaration = new CodeVariableDeclarationStatement(
            // Type of the variable to declare.
            typeof(string),
            // Name of the variable to declare.
            "TestString");

Produces the following VB.Net Statement:

Dim TestString As String

What change would I need to make for it to look like this:

Dim TestString As New StringBuilder()

I'm interested in how to get that NEW keyword to appear.

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

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

发布评论

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

评论(1

紅太極 2024-12-06 14:57:15

在构造函数中添加一个 CodeObjectCreateExpression 作为第三个参数:

CodeVariableDeclarationStatement variableDeclaration = new CodeVariableDeclarationStatement(
    // Type of the variable to declare.
    typeof(System.Text.StringBuilder),
    // Name of the variable to declare.
    "TestString",
    // A CodeExpression that indicates the initialization expression for the variable.
    new CodeObjectCreateExpression( typeof(System.Text.StringBuilder), new CodeExpression[] {} )
);

Add a CodeObjectCreateExpression as a 3rd argument in the constructor:

CodeVariableDeclarationStatement variableDeclaration = new CodeVariableDeclarationStatement(
    // Type of the variable to declare.
    typeof(System.Text.StringBuilder),
    // Name of the variable to declare.
    "TestString",
    // A CodeExpression that indicates the initialization expression for the variable.
    new CodeObjectCreateExpression( typeof(System.Text.StringBuilder), new CodeExpression[] {} )
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文