Hello,
I use the code below to access the properties on my form,but today I'd like to write stuff to a ListView,which requires more parameters.
public string TextValue
{
set
{
if (this.Memo.InvokeRequired)
{
this.Invoke((MethodInvoker)delegate
{
this.Memo.Text += value + "\n";
});
}
else
{
this.Memo.Text += value + "\n";
}
}
}
How to add more than one parameter and how to use them(value,value)?