微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在VB.NET中声明和初始化多维数组?

我想做这个:
Dim Numbers As Integer()() = {{1},{2},{3},{4,5,6,7}}

IDE强调4,7并且说Array初始化器有3个太多的元素.我究竟做错了什么?

以下应该有效:
Dim Numbers As Integer()() = {({1}),({2}),({3}),({4,7})}

作为Arrays in Visual Basic中的文件

You can avoid an error when you supply nested array literals of different dimensions by enclosing the inner array literals in parentheses. The parentheses force the array literal expression to be evaluated,and the resulting values are used with the outer array literal

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐