SyntaxFix
Write A Post
Hire A Developer
Questions
I would favor string.Empty over String.Empty because you can use it without needing to include a using System; in your file.
string.Empty
String.Empty
using System;
As for the picking "" over string.Empty, it is personal preference and should be decided by your team.
""