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' …
1
vote
Getting i-th value from a SortedList or SortedDictionary
Try something like this:
list.Values[list.Count / 2];
Note that a true median would average the two numbers in the middle if Count is even.
…
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 …
3
votes
Most Useful Attributes in C#
It's not well-named, not well-supported in the framework, and shouldn't require a parameter, but this attribute is a useful marker for immutable classes:
[ImmutableObject(true)]
…
0
votes
How do I unit test code that uses a Fluent interface?
Can you mock your Repositories? While some will advocate a more pure approach where you must isolate one method of one class, it would be a decent way to test how FindComputers and the fluent inter …
2
votes
Partial Class Constructors
Search for "partial methods". This will do exactly what you want.
For example:
public partial class Test
{
public Test()
{
//do stuff
DoExtraStuff …
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 …
1
vote
What data structures can I use to represent a strongly-typed 2D matrix of data in .Net?
I believe you'll have to roll your own. You could store your matrix of data in one of these:
List<List<RoundScore>>
Then in Round, add a field that sto …
