summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/LowLevelConsole.cs
blob: 316583e27682d69589081c422491aaa17494db45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System.Text;
using System.Security;
using Microsoft.Win32;
using Microsoft.Win32.SafeHandles;

namespace System
{
    //
    // Simple limited console class for internal printf-style debugging in mscorlib
    // and low-level tests that just want to depend on mscorlib.
    //

    public static class Console
    {
        static SafeFileHandle _outputHandle;

        static Console()
        {
            _outputHandle = new SafeFileHandle(Win32Native.GetStdHandle(Win32Native.STD_OUTPUT_HANDLE), false);
        }

        public static unsafe void Write(string s)
        {
            byte[] bytes = Encoding.UTF8.GetBytes(s);

            fixed (byte * pBytes = bytes)
            {
                int bytesWritten;
                Win32Native.WriteFile(_outputHandle, pBytes, bytes.Length, out bytesWritten, IntPtr.Zero);
            }
        }

        public static void WriteLine(string s)
        {
            Write(s + Environment.NewLine);
        }

        public static void WriteLine()
        {
            Write(Environment.NewLine);
        }
     }
}