Set Console.OutputEncoding to Unicode.

This allows "[Console]::WriteLine( [char] 0x2026 )" to work just as well
as "[char] 0x2026".
This commit is contained in:
Dan Thompson (SBS) 2019-04-02 21:58:57 -07:00 коммит произвёл Dan Thompson
Родитель 2627cd6fe7
Коммит 07485ef29c
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -54,6 +54,8 @@ namespace MS.DbgShell
static int Main( string[] args )
{
Console.OutputEncoding = Encoding.Unicode;
//
// We've got four possibilities:
//