Sử dụng phương thức tĩnh String.Format cho định dạng chuỗi kép trong C #.
Đối với ba chữ số thập phân -
String.Format ("{0:0.000}", 987.383); String.Format ("{0:0.000}", 987.38); String.Format ("{0:0.000}", 987.7899);Đối với dấu phân cách hàng nghìn -
String.Format ("{0:0,0.0}", 54567.46); String.Format ("{0:0,0}", 54567.46);Để định dạng chuỗi -
Ví dụ
using System; class Demo {public static void Main (String [] args) {Console.WriteLine ("Ba chữ số thập phân ..."); 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 ("Dấu phân cách hàng nghìn ..."); Console.WriteLine (String.Format ("{0:0,0.0}", 54567.46)); Console.WriteLine (String.Format ("{0:0,0}", 54567.46)); }}