I've been learning a lot about IL recently with my new job. I have a question though that I can't quite find an answer for.
All of the documentation I've seen indicates that anonymous methods(for use in delegates) isn't supported on .Net 1.1. However, in the IL, anonymous methods appears to be implemented by just using regular methods with "impossible" names.
So what about anonymous methods makes them unsupported on .Net 1.1? Is there something I'm missing?