The code block below results in the error: TargetParameterCountException was unhandled by user code. Parameter count mismatch.
public void AddListViewItem(string[] Data)
{
if (InvokeRequired)
{
Invoke(new Action<string[]>(AddListViewItem), Data);
}
else
{
ListViewData.Items.Add(Data[0]).SubItems.AddRange
(
new string[]
{
Data[1],
Data[2],
Data[3],
}
);
}
}
Any ideas?
The error occurs because of array covariance; an array of strings is assignable to
object[]. This causes theInvokemethod to treat each element of thestringarray as if it should be an argument to theAddListViewItemmethod.Here’s a fix:
(or)
This makes it crystal-clear to
Invokethat the target method takes a single parameter.