C# এ স্ট্রিং লিটারেল ফরম্যাট করতে, String.Format পদ্ধতি ব্যবহার করুন।
নিম্নলিখিত উদাহরণে, 0 হল বস্তুর সূচক যার স্ট্রিং মান সেই নির্দিষ্ট অবস্থানে ঢোকানো হয় −
using System; namespace Demo { class Test { static void Main(string[] args) { decimal A = 15.2 m; string res = String.Format("Temperature = {0}°C.", A); Console.WriteLine(res); } } }
নিম্নলিখিত উদাহরণে, আসুন ডবল টাইপের জন্য স্ট্রিং ফর্ম্যাট করি।
উদাহরণ
using System; class Demo { public static void Main(String[] args) { Console.WriteLine("Three decimal places..."); Console.WriteLine( String.Format("{0:0.000}", 987.383)); Console.WriteLine( String.Format("{0:0.000}", 987.38)); Console.WriteLine(String.Format("{0:0.000}", 987.7899)); Console.WriteLine("Thousands Separator..."); Console.WriteLine(String.Format("{0:0,0.0}", 54567.46)); Console.WriteLine(String.Format("{0:0,0}", 54567.46)); } }
আউটপুট
Three decimal places... 987.383 987.380 987.790 Thousands Separator... 54,567.5 54,567