You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 19, 2024. It is now read-only.
public delegate void ColorsUpdatedHandler(string primaryColor, string secondaryColor, string tertiaryColor);
public interface IAppServices
{
event ColorsUpdatedHandler ColorsUpdated;
...
}
the code generation is confused by the delegate declaration. It seems to be expecting something like, handler(object sender, EventArgs args), rather than the actual delegate declaration.
When I have events/delegates like the following:
the code generation is confused by the delegate declaration. It seems to be expecting something like, handler(object sender, EventArgs args), rather than the actual delegate declaration.