स्ट्रिंग अक्षर को 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