How to use string format to add variables into a string in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            string s = "c# programming";
            int i = 198;
            DateTime dt = new DateTime(2018, 8, 20);

            string sf = string.Format("{0} - {1:0.0} - {2:MM/dd/yyyy}", s, i, dt);

            Console.WriteLine(sf);
        }
    }
}


/*
run:
   
c# programming - 198.0 - 08/20/2018
 
*/

 



answered Aug 20, 2018 by avibootz

Related questions

1 answer 170 views
1 answer 116 views
116 views asked Aug 10, 2023 by avibootz
2 answers 214 views
214 views asked Dec 23, 2016 by avibootz
1 answer 158 views
1 answer 162 views
162 views asked Dec 23, 2016 by avibootz
1 answer 173 views
4 answers 333 views
...