Macron在c#控制台应用程序中

时间:2017-02-21 16:41:38

标签: c# console codepages ascii-art

我正在尝试使用斜线和破折号创建一个堡垒,我需要使用一个macron(overscore)。我尝试了几种方法,但没有一种方法可行。任何想法如何使其工作?而不是Macron我得到'?'

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace kingsdom
{
    class Program
    {
       static void Main(string[] args)
       {
           int n = int.Parse(Console.ReadLine());
           string ups = new string ('^', n / 2);
           string midUps = new string('_' ,(n * 2) - (((n / 2) * 2) + 4));
           string whitespaces = new string(' ', (n * 2) - 2);
           string downs = new string('_', n / 2);
           string midDowns = new string('\u203E', (n * 2) - (((n / 2) * 2) +    4));
           Console.WriteLine("{0}{1}{2}{3}{0}{1}{2}", "/", ups, "\\", midUps);
           for (int i = 0; i < n - 2; i++)
           {
               Console.WriteLine("{0}{1}{0}", "|", whitespaces);
           }
           Console.WriteLine("{0}{1}{2}{3}{0}{1}{2}", "\\", downs, "/", midDowns);
       }
    }
}

1 个答案:

答案 0 :(得分:3)

控制台可以使用不同的代码页来显示文本。并非所有这些代码页都能正确显示所有字符。例如,当您使用代码页855(使用带有西里尔字母的东欧语言的Windows系统的默认设置)时,无法显示Macron字符。

您可以通过在主要功能的开头设置Console.OutputEncoding来定义用于您自己的控制台输出的代码页:

Console.OutputEncoding = Encoding.Unicode;

这将使控制台可以显示任何Unicode字符。

如果您想使用特定代码页,例如437(美国),您可以写:

Console.OutputEncoding = Encoding.GetEncoding(437);

请注意,在此处使用Encoding.Unicode至少需要.net版本4.5。

有关详细信息,请参阅documentation of property Console.OutputEncoding