c#字符串数组引用
本文关键字:引用 数组 字符串 | 更新日期: 2023-09-27 18:02:59
我是c#的新手,但在一些相当基本的任务中挣扎。
如此:
ListViewItem item = new ListViewItem(new[] { "1", "2", "3", "4" });
This Does not:
string[] rrr = new string[4]{ "1", "2", "3", "4" };
ListViewItem item = new ListViewItem(new[] rrr);
我的最终目标是:
for (int i=0; i<10; i++)
{
rrr[i] = "SomeText";
}
ListViewItem item = new ListViewItem(new[] rrr);
为这个基本问题道歉,我没能找到正确的关键字来得到解决方案。我更习惯VBA,它允许我摆脱任何.....
谢谢
你只应该这样做
string[] rrr = new string[4]{ "1", "2", "3", "4" };
ListViewItem item = new ListViewItem(rrr);
:
for (int i=0; i<10; i++)
{
rrr[i] = "SomeText";
}
ListViewItem item = new ListViewItem(rrr);
用ListViewItem item = new ListViewItem(rrr);
代替ListViewItem item = new ListViewItem(new[] rrr);