C# 中的多维字符串数组

发布于 2024-11-05 06:55:04 字数 98 浏览 0 评论 0原文

我需要在 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 技术交流群。

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

发布评论

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

评论(4

本王不退位尔等都是臣 2024-11-12 06:55:04
string[] animals = new string[]{"tiger", "elephant", "pigeon", "lion", "ant", "peacock"};
string[] animals = new string[]{"tiger", "elephant", "pigeon", "lion", "ant", "peacock"};
泡沫很甜 2024-11-12 06:55:04

我不确定我是否理解这个问题,上面的内容似乎不是多维数组。

您只是想要以下内容吗?

string[] animals = {"tiger", "elephant"};

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?

string[] animals = {"tiger", "elephant"};
画▽骨i 2024-11-12 06:55:04

看看这个

string[,] siblings = new string[2, 2] { {"Mike","Amy"}, {"Mary","Albert"} };

并查找锯齿状阵列

LOOK AT THIS

string[,] siblings = new string[2, 2] { {"Mike","Amy"}, {"Mary","Albert"} };

and also look for jagged array

时光与爱终年不遇 2024-11-12 06:55:04

以下是如何创建多维字符串数组并对其进行初始化的示例:

string[] myStringArray = new string[] { tiger, elephant, pigeon, lion, ant, peacock}; 

Here is an example of how to create multi-dimensional string array and have it initialized:

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