lamp

Browse by Tags

Sorry, but there are no more tags available to filter with.
Multi Line string in C#
02 February 10 10:57 AM | Frederick.Chapleau | with no comments
Ever wonder of a more efficient way to write multiple lines strings? Check this out… The first way... string myString1 = "This is the first line of my string.\n" + "This is the second line of my string.\n" + "This is the third...
Filed under:
Use the String.Format
22 July 09 08:22 AM | Frederick.Chapleau | with no comments
You can a string using a standard.Comparable to the sprintf C format... -f. ref.: http://msdn.microsoft.com/en-us/library/system.string.format(VS.71).aspx
Filed under: