Things You Can Do With String.Format In C#

Formatting output string with String.Format is really helpful, and it's been mostly use when you develop application using C# or VB.Net. String.Format firstly released in .NET Framework 1.1. String.Format is for replaces each format item in a specified String with the text equivalent of a corresponding object's value.String.Format overload function:Basic use:As you see the argument that inside the curly braces {0}, is the string format that will replace by the arg0. Which have this … Read more...