Search Results

16
votes

What is a solid, elegant, reusable piece of code for determining if an IEnumerable is empty, in .NET?

!enumerable.Any() Will attempt to grab the first element only. To expand on how/why this works, any determines if any of the components of an IEnumerable match a given function, if …
1
vote

Managing ThreadPool starvation within a multithreaded work queue processor?

For simple cases like this an additional monitoring thread that can spin off more threads on demand is helpful. Basically every N seconds check to see if any jobs have been finished, if not …
0
votes

Get class property name

You can reflect a Type, but you can't reflect its members except by name. If that were the only property, or you knew for certain the ordering you could find it by index, but generally spea …
-3
votes

Why is there no RAII in .NET?

The idea behind a managed garbage collector is two fold. The first benefit is that you don't have to worry about destroying objects, this avoid memory leaks and other weird problems. The se …
1
vote

Structure Vs Class in C#

To put it compactly, new is a misnomer for structs, calling new simply calls the constructor. The only storage location for the struct is the location it is defined. If it is a member varia …
-2
votes

Why GetHashCode is not a property like HashCode in .NET

You have to remember that the .NET Framework is designed to be accessed by a wide variety of languages. In theory you could create a compiler that is incapable of correctly overriding prope …
1
vote

.NET: How to have Escape close a MessageBox.Show()?

It sounds like MessageBoxButtons.OkCancel is what you are looking for, you are just hung up on the fact that the question does not match Ok/Cancel. You could in theory write your own Messag …
0
votes

What’s the nvelocity/C# equivalent of “if x in array” ?

You can utilize List.Contains Note that if you have an array you can cast the array to IList, or create a new List passing the array in. …