I recently read this Phil Haack post (The Most Useful .NET Utility Classes Developers Tend To Reinvent Rather Than Reuse) from last year, and thought I'd see if anyone has any additions to the list.
|
|
People tend to use the following which is ugly and bound to fail:
Better and safer way:
Also I've seen people writing custom method to read all bytes from file. This one comes quite handy:
As TheXenocide pointed out, same applies for |
|||||||
|
Returns the file name of the specified path string without the extension.
Creates a uniquely named, zero-byte temporary file on disk and returns the full path of that file. |
|||||||||||||||||||
|
|
|
|||||||||||||||
|
|
The |
||||
|
|
String.Format. The number of times I've seen
rather than
or people appending percent signs - things like that. |
|||||||||||||
|
|
Enum.Parse() |
|||||||||||
|
|
Trying to figure out where My Documents lives on a user's computer. Just use the following:
|
|||||
|
|
I needed to download some files recently in a windows application. I found the DownloadFile method on the WebClient object:
|
|||
|
|
|
String.Join() (however, almost everyone knows about string.Split and seems to use it every chance they get...) |
|||||||||||||
|
|
Hard coding a / into a directory manipulation string versus using:
|
|||||||||||||||
|
|
The StringBuilder class and especially the Method AppendFormat. P.S.: If you are looking for String Operations performance measurement: StringBuilder vs. String / Fast String Operations with .NET 2.0 |
|||||
|
|
Instead of generating a file name with a Guid, just use:
|
|||
|
|
|
Lots of the new Linq features seem pretty unknown:
All really useful little functions that you can use outside of the Linq syntax. |
|||
|
|
|
||||
|
|
|
System.Text.RegularExpressions.Regex |
|||||||
|
|
|
|||||||||||||||||||
|
|
For all it's hidden away under the Microsoft.VisualBasic namespace, TextFieldParser is actually a very nice csv parser. I see a lot of people either roll their own (badly) or use something like the nice Fast CSV library on Code Plex, not even knowing this is already baked into the framework. |
||||
|
|
|
File stuff.
|
|||
|
|
|
|
|||||
|
|
Many people seem to like stepping through an XML file manually to find something rather than use XPathNaviagator. |
|||||
|
|
Most people forget that Directory.CreateDirectory() degrades gracefully if the folder already exists, and wrap it with a pointless, if (!Directory.Exists(....)) call. |
|||||
|
|
myString.Equals(anotherString) and options including culture-specific ones. I bet that at least 50% of developers write something like: if (s == "id") {...} |
|||||
|
|
Path.Append is always forgotten in stuff I have seen. |
|||||
|