1

我正在尝试在我的项目中设置自定义文化。但是我有一些问题我搜索了谷歌并找到了以下代码。但是我有一些问题,请在评论中观察。

using System;
using System.IO;
using System.Globalization;

public class Example 
{
    public static void Main() 
    {
        // Persist the date and time data.
        StreamWriter sw = new StreamWriter(@".\DateData.dat");

        // Create a DateTime value.      
        DateTime dtIn = DateTime.Now;
        // Retrieve a CultureInfo object.
        CultureInfo invC = CultureInfo.InvariantCulture;

        // Convert the date to a string and write it to a file.
        sw.WriteLine(dtIn.ToString("r", invC));//what r mean?. if r is the custem culture      variabel then how we determin it.
        sw.Close();

        // Restore the date and time data.
        StreamReader sr = new StreamReader(@".\DateData.dat");
        String input;
        while ((input = sr.ReadLine()) != null) 
        {
            Console.WriteLine("Stored data: {0}\n" , input);    

            // Parse the stored string.
            DateTime dtOut = DateTime.Parse(input, invC, DateTimeStyles.RoundtripKind);

            // Create a French (France) CultureInfo object.
            CultureInfo frFr = new CultureInfo("fr-FR");
            // Displays the date formatted for the "fr-FR" culture.
            Console.WriteLine("Date formatted for the {0} culture: {1}" , 
                       frFr.Name, dtOut.ToString("f", frFr));// f?

            // Creates a German (Germany) CultureInfo object.
            CultureInfo deDe= new CultureInfo("de-De");
            // Displays the date formatted for the "de-DE" culture.
            Console.WriteLine("Date formatted for {0} culture: {1}" , 
                       deDe.Name, dtOut.ToString("f", deDe));
        }
        sr.Close();
    }
}
4

1 回答 1

1

这是一个显示 DateTime.ToString() 方法的许多格式值的链接。我没有看到提到小写“r”,但您的代码输出似乎与“R”或“r”相同。

http://msdn.microsoft.com/en-us/library/zdtaw1bw.aspx

您写入文件的 DateTime 值将基于任何文化更改之前的不变文化。在获得一些新的文化信息之前,你把它写出来,然后再读回来。

我不得不猜测你在问什么,因为除了代码之外没有任何问题。如果我误解了您的问题,请提供更多详细信息。

也许如果你要展示你的输出,它会有所帮助。

啊,这是一个实际上说“r”与“R”相同的链接。所以现在你有关于你问题的那部分的文档:

http://msdn.microsoft.com/en-us/library/az4se3k1.aspx

于 2013-10-10T21:34:27.890 回答