C++ CLI 丢失 ';之前'}

发布于 2024-08-19 16:21:20 字数 231 浏览 2 评论 0原文

我正在学习 C++/CLI 并尝试为我的 C# 项目构建互操作组件。我不确定这个错误意味着什么或如何解决它?有什么想法吗?

#pragma once

using namespace System;

namespace Firewall {

    public ref class Firewall
    {
        void StartFirewall(){};
    }
}

I am learning C++/CLI and attempting to build an Interop component for my C# project. I'm not sure what this error means or how to resolve it? Any ideas?

#pragma once

using namespace System;

namespace Firewall {

    public ref class Firewall
    {
        void StartFirewall(){};
    }
}

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

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

发布评论

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

评论(2

离笑几人歌 2024-08-26 16:21:20

与 C# 不同,C++ 需要在类型定义后添加分号。

public ref class Firewall
{
    void StartFirewall(){} // doesn't require semicolon here
}; // needs semicolon here.

在 C# 中,您实际上可以在类型定义之后添加分号(尽管不推荐),但它会被忽略。它的存在是为了与 C++ 语法保持一致。

Unlike C#, C++ requires a semicolon after a type definition.

public ref class Firewall
{
    void StartFirewall(){} // doesn't require semicolon here
}; // needs semicolon here.

In C#, you can actually have semicolons after type definitions (not recommended though) and that will be ignored. It is there for the sake of consistency with C++ syntax.

情绪失控 2024-08-26 16:21:20

不需要将 ; 放在当前的位置。而是将其放置在 Firewall 类的结束 } 之后。

public ref class Firewall
{
    void StartFirewall(){}
};

There is no need to have the ; in the place you currently have it. Instead place it after the closing } of the class Firewall.

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