CLS 兼容问题

发布于 2024-09-03 18:27:55 字数 471 浏览 4 评论 0原文

我定义了以下属性。 MyLibrary.PumpSignal 是一个枚举,如下所示:

Public Enum PumpSignal As Integer
    PumpOff = 0
    PumpOn = 1
End Enum

然后我有另一个具有 PumpSignal 类型属性的类。

Property PumpState() As MyLibrary.PumpSignal
        Get
            Return m_PumpState
        End Get
        Set(ByVal value As MyLibrary.PumpSignal)
            m_PumpState = value
        End Set
End Property

.NET 不断抱怨 PumpState 的返回值不符合 cls 标准。

I have the following property defined. MyLibrary.PumpSignal is an enum as follows:

Public Enum PumpSignal As Integer
    PumpOff = 0
    PumpOn = 1
End Enum

Then I have another class with a property of the PumpSignal type.

Property PumpState() As MyLibrary.PumpSignal
        Get
            Return m_PumpState
        End Get
        Set(ByVal value As MyLibrary.PumpSignal)
            m_PumpState = value
        End Set
End Property

.NET keeps complaining that the Return value from PumpState is no cls-compliant.

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

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

发布评论

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

评论(1

舂唻埖巳落 2024-09-10 18:27:55

仅当类型或其程序集显式标记为符合 CLS 时,该类型才符合 CLS。

添加到库中。

或者,将 添加到该属性。

A type is only CLS-compliant if it or its assembly is explicitly marked as CLS-compliant.

Add <Assembly: CLSCompliant(True)> to the library.

Alternatively, add <CLSCompliant(False)> to the property.

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