When setting a string object to an empty string, I did a test and I found that doing this:
string ContentFieldName = String.Empty;
Is slightly faster than doing this:
string ContentFieldName = "";
Your results my vary 
Tip Submitted By: David McCarter