Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
EDIT: I also got it to work by including an additional default (parameterless) constructor.
I had a lot of issues with this one trying to use a constructor to initialize the name property.
i.e, I had to remove:
public PersonEventArgs(string name)
{
Name = name;
}
And pass the name by doing:
ContactNotify?.Invoke(this, new PersonEventArgs(){Name=name});
Any attempt to pass name resulted in a CS7036 error depicting there was no parameter 'name' of 'PersonEventArgs.PersonEventArgs(string)'