What’s the difference between #1 and #2:
Code 1 (compiled ok):
byte[] GetSomeBytes()
{
return (byte[])this.Invoke((MethodInvoker)delegate
{
GetBytes();
});
}
byte[] GetBytes()
{
GetBytesForm gbf = new GetBytesForm();
if(gbf.ShowDialog() == DialogResult.OK)
{
return gbf.Bytes;
}
else
return null;
}
Code 2 (didn’t complied ok)
int GetCount()
{
return (int)this.Invoke((MethodInvoker)delegate
{
return 3;
});
}
Code #2 gives me Since ‘System.Windows.Forms.MethodInvoker’ returns void, a return keyword must not be followed by an object expression.
How can I fix it? And why (do) complier think code #1 is right?
To answer your first question, try altering your first sample like this:
At this point, you’ll have the same compilation error.
public object Invoke(Delegate method)returns an object, so you can cast the return value to anything and it will compile. However, you are passing in a delegate of typeMethodInvoker, which has a signaturedelegate void MethodInvoker(). So, within the body of the method that you cast to MethodInvoker, you cannotreturnanything.Try this instead for the second one:
Func<int>is a delegate that returns an int, so it will compile.