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.
|
41
|
|
|
|
|
|
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 |
||||
|
|
|
String.IsNullOrEmpty() |
||||||
|
|
|
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. |
||||||
|
|
|
String.Format. The number of times I've seen
rather than
or people appending percent signs - things like that. |
||||||||
|
|
|
Enum.Parse() |
||||||||
|
|
|
The System.Diagnostics.Stopwatch class. |
||
|
|
|
|
String.Join() (however, almost everyone knows about string.Split and seems to use it every chance they get...) |
||||||||
|
|
|
Trying to figure out where My Documents lives on a user's computer. Just use the following:
|
||||
|
|
|
Hard coding a / into a directory manipulation string versus using:
|
||||||||
|
|
|
I needed to download some files recently in a windows application. I found the DownloadFile method on the WebClient object:
|
||
|
|
|
|
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 |
|||
|
|
|
input.StartsWith("stuff") instead of Regex.IsMatch(input, @"^stuff") |
||||||||||||
|
|
|
System.Text.RegularExpressions.Regex |
||||
|
|
|
File stuff.
|
||
|
|
|
|
|
||
|
|
|
|
Instead of generating a file name with a Guid, just use:
|
||
|
|
|
|
|
|||
|
|
|
|
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. |
||
|
|
|
System.IO.File.ReadAllText vs writing logic using a StreamReader for small files. System.IO.File.WriteAllText vs writing logic using a StreamWriter for small files. |
||||
|
|
|
Lots of the new Linq features seem pretty unknown:
All really useful little functions that you can use outside of the Linq syntax. |
||
|
|
|
|
Path.Append is always forgotten in stuff I have seen. |
||
|
|
|
myString.Equals(anotherString) and options including culture-specific ones. I bet that at least 50% of developers write something like: if (s == "id") {...} |
||
|
|
