DialogResult and the Cancel button

Cancel buttons can be an important part of working with forms. If no DialogResult is set, the form will close but the calling code will continue unhindered. To work properly, both the OK and Cancel actions should be set. First, make sure to be getting a result from the form: For cancel or close, the…

Read More

Special Characters in XML Comments

Something that I’ve come across a few times now is the need to include special characters in XML comments for custom methods. Specifically, when trying to show that a parameter or return is a List of something, how does one show the < and > in List<IEdmTransition10>? I kept trying to use ‘\’ or ‘\\’…

Read More