不是你想的那样,不。 standard和custom日期和时间格式字符串本身与语言无关。
可以使用特定语言或文化标识符应用,如下所示:
DateTime dt = DateTime.Now; // or your value
string format = "g"; // whatever format you like
CultureInfo culture = new CultureInfo("it-IT"); // the culture code
string s = dt.ToString(format, culture); // apply them both