vote up 31 vote down star
41

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.

flag

30% accept rate

24 Answers

vote up 28 vote down

People tend to use the following which is ugly and bound to fail:

string path = basePath + "\\" + fileName;

Better and safer way:

string path = Path.Combine(basePath, fileName);

Also I've seen people writing custom method to read all bytes from file. This one comes quite handy:

byte[] fileData = File.ReadAllBytes(path); // use path from Path.Combine

As TheXenocide pointed out, same applies for File.ReadAllText() and File.ReadAllLines()

link|flag
Same for File.ReadAllText and File.WriteAllText – TheXenocide Oct 7 '08 at 21:46
I think that i must be one of the 5 people that actually use those off the vat! – RCIX Jul 22 at 5:38
vote up 26 vote down

String.IsNullOrEmpty()

link|flag
Although there was some hoopla about IsNullOrEmpty breaking if in nested loops a couple of years ago... – Omar Kooheji Oct 7 '08 at 14:21
I'm not so sure I remember anything of the sort, I've used it in fairly nested loops and algorithms since .NET 1.0 – TheXenocide Oct 7 '08 at 21:46
...now you tell me! – bouvard Oct 7 '08 at 21:57
vote up 25 vote down
Path.GetFileNameWithoutExtension(string path)

Returns the file name of the specified path string without the extension.

Path.GetTempFileName()

Creates a uniquely named, zero-byte temporary file on disk and returns the full path of that file.

link|flag
Does GetTempFileName really create a zero-byte file on disk? What a poorly named method if that is the case.... – Carl Oct 7 '08 at 14:22
It avoids race conditions (which could be a security hole) -- once it's returned the filename, it's guaranteed to exist. – Roger Lipscombe Oct 7 '08 at 14:48
The method is still poorly named. Let's invent method Path.CreateTempfile() which returns a temporary filename but doesn't actually create the file. It'll be bad because of race conditions, but it'll be as perfectly well named as GetTempFileName. – Windows programmer Oct 23 '08 at 4:46
vote up 19 vote down

String.Format.

The number of times I've seen

return "£" & iSomeValue

rather than

return String.Format ("{0:c}", iSomeValue)

or people appending percent signs - things like that.

link|flag
1  
String.Format was implemented for C++ migrators. return "£" & iSomeValue is far easier to write. Personally I hate String.Format. – stimpy77 Jan 5 '09 at 19:53
@Stimpy, string.Format() is better for localization. – Robert S. Jan 6 '09 at 16:33
This is not localization, this is replacing correct data with wrong data. If something is £5 you should show £5, not $5. £5 is not $5. – Dour High Arch Jul 27 at 17:05
vote up 16 vote down

Enum.Parse()

link|flag
Uses reflection => slow – Michael Damatov Oct 7 '08 at 22:03
3  
"reflection => slow" is a ridiculous generalization and oversimplification. To use the type, the assembly must be already loaded into memory. Hence, the "reflection" used here is just getting an reference to an existing array. You could not do better rolling your own. – James Curran Oct 8 '08 at 11:02
Toro, why do you program .NET at all? It's slow.. – Valentin Vasilyev Sep 13 at 9:48
vote up 16 vote down

The System.Diagnostics.Stopwatch class.

link|flag
vote up 11 vote down

String.Join() (however, almost everyone knows about string.Split and seems to use it every chance they get...)

link|flag
Why would I use String.Join over a plus sign? – Karl Jan 6 '09 at 16:33
I'm guessing you are confusing String.Join (msdn.microsoft.com/en-us/library/…) with String.Concat. (Plus is an alias for the latter.) – James Curran Jan 6 '09 at 20:58
1  
+1. It's silly how often I see someone reinvent the wheel by creating a StringBuilder, making a boolean for isFirstElement, and foreaching through a collection, prepending ", " before each element except the first. Just add the items to a List<string>, then call ToArray() and string.Join(). – Joe White Jun 30 at 13:29
vote up 11 vote down

Trying to figure out where My Documents lives on a user's computer. Just use the following:

string directory =
Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
link|flag
1  
In VB.Net: My.Computer.FileSystem.SpecialFolders.MyDocuments – Joel Coehoorn Oct 7 '08 at 18:57
vote up 10 vote down

Hard coding a / into a directory manipulation string versus using:

IO.Path.DirectorySeparatorChar
link|flag
Why not Path.Combine and ignore DirectorySeparatorChar altogether. – sixlettervariables Oct 7 '08 at 15:47
there have been situations where I've needed the character alone – TheXenocide Oct 7 '08 at 21:47
Although there is no real disadvantage putting a "/" instead of bothering with long variable name. No one cares about Mono 99% of the time anyway. And I don't see any other good reason to use it. – dr. evil Apr 29 at 9:41
"/" would work fine in Mono. It's "\" that's Windows-specific (though "/" works for most WinAPIs too). – Joe White Jun 30 at 13:30
vote up 10 vote down

I needed to download some files recently in a windows application. I found the DownloadFile method on the WebClient object:

    WebClient wc = new WebClient();
    wc.DownloadFile(sourceURLAddress, destFileName);
link|flag
vote up 7 vote down

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

link|flag
See the StringWriter class too! – David Kemp Sep 9 at 8:29
vote up 6 vote down

input.StartsWith("stuff") instead of Regex.IsMatch(input, @"^stuff")

link|flag
2  
except input.StartsWith() will perform about 10x better. YAGNI and KISS! – Jeff Atwood Oct 7 '08 at 14:04
Hah! Right you are. Edited to put them in the right order. – mmacaulay Oct 7 '08 at 14:38
Not only that, but StartsWith() has nice semantics built-in - the person reading this knows exactly what is intended. – Jason Bunting Oct 7 '08 at 17:58
Upmodding for the comments, not the post... – Rich Oct 23 '08 at 5:31
Why would you resort to RegEx when there is already a method to do exactly what you need? – Jon Tackabury Oct 29 '08 at 17:56
vote up 6 vote down

See Hidden .NET Base Class Library Classes

link|flag
vote up 5 vote down

System.Text.RegularExpressions.Regex

link|flag
I'd actually go the other way -- where many people will immedaitely jump to a regex solution to a problem, even if there's a simpler & faster non-regex method. – James Curran Oct 7 '08 at 13:58
BAH! Regex is FRIGGEN AWESOME. Away with your dismissive comment! – Will Oct 7 '08 at 16:28
vote up 5 vote down

File stuff.

using System.IO;

File.Exists(FileNamePath)

Directory.Exists(strDirPath)

File.Move(currentLocation, newLocation);

File.Delete(fileToDelete);

Directory.CreateDirectory(directory)

System.IO.FileStream file = System.IO.File.Create(fullFilePath);
link|flag
vote up 5 vote down
Environment.NewLine
link|flag
vote up 4 vote down

Instead of generating a file name with a Guid, just use:

Path.GetRandomFileName()
link|flag
vote up 4 vote down
link|flag
vote up 3 vote down

Many people seem to like stepping through an XML file manually to find something rather than use XPathNaviagator.

link|flag
I always like to read the XML into a datatable then filter on that. Lovely, lovely datatables! – RB Oct 7 '08 at 13:58
I'm not familar with XML -> DataTables. Doesn't it require that the XML be one tiered (mean that XML was a poor choice for the data to start with) – James Curran Oct 7 '08 at 14:00
vote up 3 vote down

Most people forget that Directory.CreateDirectory() degrades gracefully if the folder already exists, and wrap it with a pointless, if (!Directory.Exists(....)) call.

link|flag
This is untrue. In ASP.NET 2.0 (my test), Directory.CreateDirectory(some path) will throw an exception if the directory already exists. – Redbeard 0x0A Nov 19 '08 at 22:52
vote up 3 vote down

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.

link|flag
1  
I think you meant System.IO.File.ReadAllText, System.IO.File.WriteAllText. – Richard Nienaber Oct 8 '08 at 4:18
vote up 2 vote down

Lots of the new Linq features seem pretty unknown:

Any<T>() & All<T>()

if( myCollection.Any( x => x.IsSomething ) )
    //...

bool allValid = myCollection.All( 
    x => x.IsValid );

ToList<T>(), ToArray<T>(), ToDictionary<T>()

var newDict = myCollection.ToDictionary(
    x => x.Name,
    x => x.Value );

First<T>(), FirstOrDefault<T>()

return dbAccessor.GetFromTable( id ).
    FirstOrDefault();

Where<T>()

//instead of
foreach( Type item in myCollection )
    if( item.IsValid )
         //do stuff

//you can also do
foreach( var item in myCollection.Where( x => x.IsValid ) )
    //do stuff

//note only a simple sample - the logic could be a lot more complex

All really useful little functions that you can use outside of the Linq syntax.

link|flag
vote up 0 vote down

Path.Append is always forgotten in stuff I have seen.

link|flag
There is no such method. Do you mean Path.Combine? – Seb Nilsson Oct 7 '08 at 14:36
vote up 0 vote down

myString.Equals(anotherString)

and options including culture-specific ones.

I bet that at least 50% of developers write something like: if (s == "id") {...}

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.