67
votes
Hidden .NET Base Class Library Classes?
System.Diagnostics.DebuggerDisplay
When you're debugging, if the class is attributed, visual studio will display the information on mouse-over. It even allows you to put in …
0
votes
Why is try {…} finally {…} good; try {…} catch{} bad?
While the following 2 code blocks are equivalent, they are not equal.
try
{
int i = 1/0;
}
catch
{
reader.Close();
throw;
}
try
{
int i = 1/0;
}
finally
{
reader.Close() …
0
votes
How would you refactor this LINQ code?
I'd be wary of the solutions of the form:
// from Keith
from x in GetInitialResults()
//either we don't need to check, or the check passes
where string.IsNullOrEmpty(ddlFile …
3
votes
What does the “private” modifier do?
Private is only the default for methods on a type, but the private modifier is used elsewhere.
From C …
0
votes
Redundancy in C#?
It's only redundant in a small set of circumstances.
Consider interface-based programming.
IList<int> list = CreateList(numberOfPeople);
where
…
1
vote
How to make a method exclusive in a multithreaded context ?
The code is fine, but would agree with changing the method to be static as it conveys intention better. It feels odd that all instances of a class have a method between them that runs synchronously …
1
vote
Socket programming: Do some ISP’s impose rate-limiting on FTP uploads?
500k is awefully small these days, so I'd be a little surprised if they throttle something that small.
I know you're already chunking your request, but can you determine if any data is tra …
6
votes
When should I use GC.SuppressFinalize()?
SuppresFinalize should only be called by a class that has a finalizer. It's informing the GC that this object was cleaned up fully.
The recommended IDisposable pattern when you …
2
votes
Retrieving the original error number from a COM method called via reflection
Just want to offer an update to @sharvell's catch code. Unless you're absolutely sure InnerException is a COMException, it's better to safely test it first. Otherwise you'll have an exception in yo …
1
vote
.NET - How can you split a “caps” delimited string into an array?
For more variety, using plain old C# objects, the following produces the same output as @MizardX's excellent regular expression.
public string FromCamelCase(string camel)
{ // omi …
1
vote
Is it OK to use HttpRuntime.Cache outside ASP.NET applications?
I once used it, but it didn't feel right and IIRC increased the memory footprint quite dramatically. Instead, I implemented my own lightweight cache mechanism which is surprisingly easy to do. …
2
votes
.NET DBNull vs Nothing across all variable types?
Normal value types (booleans, ints, longs, float, double, enum and structs) are not nullable.
The default value for all value types is 0.
The CLR won't let you access variables unle …
5
votes
0
votes
Howto: Count the items from a IEnumerable<T> without iterating?
Just adding extra some info ..
The Count() extension doesn't always iterate. Consider Linq to Sql, where the count goes to the database, but instead of bringing back all the r …
2
votes
c# 2.0 to c# 3.0 worth it?
From a technology standpoint, it's all framework version 2 and it's very little effort to achieve. The differences in 2.0, 3.0 and 3.5 are just …
