6
votes
8answers
1k views
“Treat all warnings as errors except…” in Visual Studio
In Visual Studio, I can select the "Treat warnings as errors" option to prevent my code from compiling if there are any warnings. Our team uses this option, but there are two warnings we would like …
1
vote
7answers
251 views
Mimicking assembly resolution of the msbuild process.
I am writing a validation tool that checks the versions of files referenced in a project. I want to use the same resolution process that MSBuild uses.
For example, Assembly.Load(..) require …
4
votes
How can I prevent a base constructor from being called by an inheritor in C#?
There is a way to create an object without calling any constructors.
Before you proceed, be very sure you want to do it this way. 99% of the time this is the wrong solution.
…
2
votes
Why is this code invalid in C#?
The other answers explain it well. One extra tidbit:
Boxing would not be involved here even if this did compile. String and DBNull are both reference (class) types, not value types, so a st …
3
votes
What is your best resource about generics and their interfaces?
The main way I came to understand them was just by looking at their interfaces.
The inheritance goes like this:
IList : ICollection : IEnumerable
When you look up IEnumerabl …
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
Enable/Disable “Step into” debugging on certain project in visual studio solution
A couple of possibilities:
There is a check box to step into "just my code". Its intent is to make it so you can't step into Microsoft's Framework code (unless you choose to by unc …
0
votes
Refactor To Eliminate Repetition In Lamba Expression
The repetition is in the names, but C# has no idea that PropertyA in one class is connected with PropertyA in another. You have to make the connection explicitly. The way you did it works fine. If …
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.
…
2
votes
Advantages to Using Private Static Methods
When I'm writing a class, most methods fall into two categories:
Methods that change the current instance's state.
Helper methods that don't change the current object's state …
2
votes
Using Reflection to set a Property with a type of List<CustomClass>
Here's an example of taking the List<> type and turning it into List<string>.
var list = typeof(List<>).MakeGenericType(typeof(string));
…
5
votes
Existing LINQ extension method similar to Parallel.For?
Shedding a little more light on why:
LINQ is functional in nature. It is used to query data and return results. A LINQ query shouldn't be altering the state of the application (with some ex …
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 …
2
votes
How do I enforce using a factory on a struct in C#
Anyone can create a struct at any time without calling a constructor, as long as they have access to the struct. Think about it this way:
If you create an array of objects with 1000 element …
1
vote
Best Practices: When not/to use partial classes.
I've actually done the same thing. As has been stated, there is a slight readability hit on deciphering the partial classes.
Decoupling is the main reason I like this solution. A pri …
