Hi i have a class with a delegate as a parameter as shown in the code, but i get the errors
Error 1 Type expected ...ClassesClass1.cs 218 33 Classes
and
Error 2 ; expected ...ClassesClass1.cs 218 96 Classes
. How do i fix the issue? Thanks in advance! I m trying to pass it byref so when a class initializes, some method of it is attached to the delegate.
public constructor(ref delegate bool delegatename(someparameters))
{
some code
}