il

Does the mono runtime already handle tail call optimisation as required by the IL spec?

I know that by this infamous post http://flyingfrogblog.blogspot.com/2009/01/mono-does-not-support-tail-calls.html the mono runtime did not offer tail call elimination as required by the IL. Has this changed since? ...

EmitCall raises "operation could destabilize the runtime" in Silverlight

I'm n00b in IL language. In my task i have to create dynamic types inherited from System.ServiceModel.DomainServices.Client.Entity. When i am adding additional code to set method of property, i receive "operation could destabilize the runtime". Help me, please, resolve that problem. Code from Reflector: L_0000: nop L_0001: ldarg.0 L_...

Catch events by dynamically adding Handler using Code Generation

I need to hook up all events in an application and trace all information (raising, arguments, etc.). I found this at Stackoverflow: http://stackoverflow.com/questions/2802774/tracing-all-events-in-vb-net However, I need a solution that not only writes the called event to console, but calls TraceVerbose with parameters showing sender a...