listviewitem constructor problem
Hi All,
I'm learning c# so apologies if this is a stupid question
I get the error 'listviewitem does not contain a constructor that takes 1 arguments'.
The code I'm using is the following
string[] lViewItem = new string[2];
foreach (Collect c in collect)
{
lViewItem[0] = c.Id.ToString();
lViewItem[1] = c.Name;
ListViewItem lvi = new ListViewItem(lViewItem);
listView1.Items.Add(lvi);
What am I doing wrong.
Thanks in advance.