我试图设置 ASP.NET 应用程序的 Culture 和 UICulture 没有成功。还在 C# Windows 应用程序中尝试过。
System.Globalization.CultureInfo a = new System.Globalization.CultureInfo("fa-IR");
a.NumberFormat.DigitSubstitution = System.Globalization.DigitShapes.NativeNational;
string Q = string.Format(a, "{0}", 1234567890); // Output 1234567890 instead of ٠١٢٣٤٥٦٧٨٩
代码中有没有我遗漏的部分?