Often C# debug messages and stack traces contain method names that look similar to the following:
XGI.Dialogs.XgiMainMenuDialog+<>c__DisplayClass16_0
I always struggle to read these strings. What is the "+<>" after my class name? What is "DisplayClass"; I have no such method or class in my code.
Any advice on how to interpret these method name strings?