Jag får detta felmeddelande: Att du glömmt lite parenteser.Cannot convert method group 'getMatchResult' to non-delegate type 'object'.
Cannot convert method group 'getMatchResult' to non-delegate type 'object'.
Did you intend to invoke the method?
Vad betyder det?Sv: Cannot convert method group 'getMatchResult' to non-delegate type 'object
Du har förmodligen en delegat som heter getMatchResult.
och du försöker tilldela den till en variabel av object typ.
object result = getMatchResult;
När det du egentligen vill göra är:
object result = getMatchResult(); //+ ev parametrar
//Roger