1
vote
How can I Trim the leading comma in my string.
Try string.Trim(',') and see if that does what you want.
…
0
votes
In C#, should I use string.Empty or String.Empty or “” ?
I think the second is "proper," but to be honest I don't think it will matter. The compiler should be smart enough to compile any of those to the exact same bytecode. I use "" myself.
…
