Search Results

0
votes

Is there a benefit to JUST a “throw” in a catch?

If you catch an exception and replace it with another exception, you should typically wrap the original exception in the new one. This is usually done by passing the old exception into the new one' …
0
votes

How do I debug IL code generated at runtime using Reflection.Emit

This may not help you at the debugging end, but RunSharp is a nice tool for generating IL that helps you avoid common pitfalls. It makes Writing IL feel a lot more like writing C#. Here is …
0
votes

Why is there not a ForEach extension method on the IEnumerable interface?

In 3.5, all the extension methods added to IEnumerable are there for LINQ support (notice that they are defined in the System.Linq.Enumerable class). In this post, I explain why foreach doesn't bel …