In my never-ending quest to keep Microsoft's documentation, I noted the following in XML schema (XSD) validation with XmlSchemaSet:
The code above subscribes to an event by creating a new delegate instance (new ValidationEventHandler) which was how code was written in for C# 1.0 to 1.1 (2002-2004):
booksSettings.ValidationEventHandler +=
new ValidationEventHandler(
booksSettingsValidationEventHandler);
new ValidationEventHandler(
booksSettingsValidationEventHandler);
As of C# 2.0 (released in 2005) there is no need to explicitly create a delegate instance when subscribing to an event:
booksSettings.ValidationEventHandler +=
booksSettingsValidationEventHandler;
booksSettingsValidationEventHandler;
The updated code is as follows:
I created a fork in Microsoft's documentation (open source on Github.com) and within twenty-four hours Microsoft accepted the change and merged the code:
No comments :
Post a Comment