C# VB.NET:如何使锯齿状字符串数组成为公共属性

发布于 2024-10-27 13:00:20 字数 293 浏览 0 评论 0原文

我想做的就是这样:

    Public Property TabsCollection()() as String()()
        Get
            Return _tabsCollection
        End Get
        Set(ByVal value()() as String()())
            _tabsCollection = value
        End Set
    End Property

但它错误地说:预期语句结束。

all i want to do is this:

    Public Property TabsCollection()() as String()()
        Get
            Return _tabsCollection
        End Get
        Set(ByVal value()() as String()())
            _tabsCollection = value
        End Set
    End Property

but it errors saying: End of statement expected.

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

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

发布评论

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

评论(3

你列表最软的妹 2024-11-03 13:00:20

TabsCollection()()

value()()

Public Property TabsCollection() As String()()
    Get
        Return _tabsCollection
    End Get
    Set(ByVal value As String()())
        _tabsCollection = value
    End Set
End Property

TabsCollection()()

value()()

Public Property TabsCollection() As String()()
    Get
        Return _tabsCollection
    End Get
    Set(ByVal value As String()())
        _tabsCollection = value
    End Set
End Property
可爱咩 2024-11-03 13:00:20

你有多余的括号对:

Public Property TabsCollection() as String()()
    Get
        Return _tabsCollection
    End Get
    Set(ByVal value as String()())
        _tabsCollection = value
    End Set
End Property

除此之外,不要以这种方式使用数组。在类的公共接口中,数组(几乎?)总是错误的。此外,这个名字表明你在这里拥有的内容可以用另一种数据结构更恰当地描述。嵌套的字符串数组是对正确严格类型的规避。

You have redundant pairs of parentheses:

Public Property TabsCollection() as String()()
    Get
        Return _tabsCollection
    End Get
    Set(ByVal value as String()())
        _tabsCollection = value
    End Set
End Property

Apart from that, don’t use arrays in that way. Arrays are (almost?) always wrong in a public interface of a class. Furthermore, the name suggests that what you have here is more aptly described by another data structure. A nested array of strings is a circumvention of proper strict typing.

野生奥特曼 2024-11-03 13:00:20

使用这个:

Public Property TabsCollection() as String()()
    Get
        Return _tabsCollection
    End Get
    Set(ByVal value as String()())
        _tabsCollection = value
    End Set
End Property

Use this:

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