Use the static String.Format() method to build a new string.

image_pdfimage_print
   
  

using System;
using System.Collections.Generic;
using System.Text;

class Program {
    static void Main(string[] args) {

        string formatStr;
        formatStr = String.Format("Don't you wish you had {0:C} in your account?", 99989.987);
        Console.WriteLine(formatStr);
    }
}

   
     


This entry was posted in Data Types. Bookmark the permalink.