C# 中的多维字符串数组
我需要在 C# 中创建一个多维字符串数组,例如
“虎象” 鸽子狮子 蚂蚁孔雀
我无法创建。它会在运行时标记错误或引发异常。 请提供正确的语法来帮助我。
I need to create a multi dimensional array of strings in C# like-
tiger elephant
pigeon lion
ant peacock
I'm unable to create. It either flags an error or throws an exception at the run time.
Please help me with it, by giving the correct syntax.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我不确定我是否理解这个问题,上面的内容似乎不是多维数组。
您只是想要以下内容吗?
Am not sure I understand the question, the above doesn't appear to be a multidimensional array.
Do you simply want somthing along the lines of the below?
看看这个
并查找锯齿状阵列
LOOK AT THIS
and also look for jagged array
以下是如何创建多维字符串数组并对其进行初始化的示例:
Here is an example of how to create multi-dimensional string array and have it initialized: