666
reputation
121 views

Registered User

name
member for 1 year
seen Dec 14 at 21:49
website
location
age
Nov
30
answered Is it possible to construct an object by reading source code?
Nov
24
revised Keep track of number of events per timespan
added 21 characters in body
Nov
24
answered Keep track of number of events per timespan
Nov
24
revised What’s the difference between the tags “offtopic” and “not-programming-related”
edited tags
Nov
24
awarded  Organizer
Nov
20
comment Optimal way for partitioning a cell based shape into a minimal amount of rectangles
Can the rectangles overlap each other?
Nov
18
comment C# string Parsing to variable types
+1 for an interesting solution.
Nov
18
answered Why am I using the KnownType attribute wrong?
Nov
18
answered C# Function Chaining
Nov
18
comment What data structures can I use to represent a strongly-typed 2D matrix of data in .Net?
Yes. You could easily implement an IDictionary the same way as the IList.
Nov
18
accepted What data structures can I use to represent a strongly-typed 2D matrix of data in .Net?
Nov
18
comment Validate date textbox
Excellent. I had forgotten about that overload. I'm glad that worked for you.
Nov
18
answered How do you get the name of a generic class using reflection?
Nov
18
accepted Validate date textbox
Nov
18
revised What data structures can I use to represent a strongly-typed 2D matrix of data in .Net?
slight deoptimization for simplicity
Nov
18
answered What data structures can I use to represent a strongly-typed 2D matrix of data in .Net?
Nov
18
answered Validate date textbox
Nov
13
answered Is there a way to have all radion buttons be unchecked
Nov
12
comment IEnumerable question: Best performance?
Unless something has changed very recently, for is a little faster than foreach, because you are not creating a new enumerator object and calling its methods as you go. The difference is small enough not to matter unless your code is an extremely critical place.
Nov
12
comment IEnumerable question: Best performance?
Performance-wise, the foreach with an if-clause will be fastest. Using .Where will be slightly slower, and using .FindAll will be much slower.
Nov
11
comment Common programming mistakes for .NET developers to avoid?
I agree that structs should be immutable. Structs do have one unique feature that classes cannot offer: they are never null. They also have some small perks, like getting value equality without writing any code and better performance if they are very small. But I agree that a class is better in most cases.
Nov
11
comment Common programming mistakes for .NET developers to avoid?
Sometimes discarding the result of a function call makes sense. For example, List.Remove(..) and StringBuilder.Append(). Very often, we don't care about these results. What we need is a way to distinguish between functions where it does and does not make sense to ignore the result. If we can't change the syntax of C#, we could add an attribute to the function. Also, if the compiler could see that a class was immutable (e.g. with another attribute), it could issue a warning when we ignore results, although there may be false positives, like WriteValuesToConsole().
Nov
11
answered Why is there not a ForEach extension method on the IEnumerable interface?
Nov
10
revised Does the scrum master have to answer the 3 standup questions as well?
added 4 characters in body
Nov
10
answered Does the scrum master have to answer the 3 standup questions as well?
Oct
16
answered Partial Class Constructors
Oct
6
comment “Treat all warnings as errors except…” in Visual Studio
I use this also, although it doesn't solve the problems mentioned in my description. I want certain warnings treated as warnings, not hidden.
Oct
6
comment “Treat all warnings as errors except…” in Visual Studio
Using the selected answer, it's easy to add to the list of warnings treated as warnings. That works much better than either of your proposed solutions. Warnings clearly are not errors, but treating most warnings as errors means code will never be checked in with those warnings.
Oct
2
awarded  Yearling
Sep
30
comment What non-programming books should programmers read?
Take the book's advice how you want to, but realize that the "Rich Dad" character may be fictional. Google this: Kiyosaki smart money
Sep
30
revised “Treat all warnings as errors except…” in Visual Studio
Fixed unintentional font weight change by rewording sentence
Sep
29
revised Most Useful Attributes in C#
deleted 1 characters in body
Sep
17
awarded  Popular Question
Aug
17
answered How do I unit test code that uses a Fluent interface?
Aug
13
comment Why is there not a `fieldof` or `methodof` operator in C#?
Nicely done. I did something similar here: stackoverflow.com/questions/269578/… but I like yours as a solid general solution:
Jul
30
comment Opaque dictionary key pattern in C#
Oddly enough, KeyValuePair doesn't override Equals and GetHashCode.
Jul
1
comment Mimicking assembly resolution of the msbuild process.
A little more detail: I have a set of validation routines that I run against csproj files. I want to add one that checks the versions of referenced assemblies. For reasons having to do with keeping our options open (which I don't necessarily agree with), it was decided that even though our projects will target the .NET framework version 3.5, none of our assembly references should be to files above version 3.3 (yet).
Jul
1
comment Mimicking assembly resolution of the msbuild process.
Yes. I want to parse a .csproj file, locate the assembly files, and get their versions. I am only concerned with system assemblies right now, but others might be useful in the future.
Jun
30
answered Near-Duplicate Image Detection
Jun
30
comment Mimicking assembly resolution of the msbuild process.
Thank you for trying to answer. Unfortunately, neither of those are run-time solutions.
Jun
26
revised Get a generic method without using GetMethods
added 2 characters in body
Jun
26
revised Mimicking assembly resolution of the msbuild process.
added 166 characters in body
Jun
26
comment Mimicking assembly resolution of the msbuild process.
I am interested in where assemblies come from at compile time. At run-time, I want to look at the XML for a reference whose Version attribute is "System.Xml" and find the same assembly that msbuild finds.
Jun
26
asked Mimicking assembly resolution of the msbuild process.
Jun
26
comment C# in comparison to C++: what is your strongest pain?
Very good points here. Vote this up.