C# VB.NET:如何使锯齿状字符串数组成为公共属性
我想做的就是这样:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
TabsCollection()()value()()TabsCollection()()value()()你有多余的括号对:
除此之外,不要以这种方式使用数组。在类的公共接口中,数组(几乎?)总是错误的。此外,这个名字表明你在这里拥有的内容可以用另一种数据结构更恰当地描述。嵌套的字符串数组是对正确严格类型的规避。
You have redundant pairs of parentheses:
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.
使用这个:
Use this: