Renci.SshNet.Common.ASCIIEncoding.ASCIIEncoding C# (CSharp) Method

ASCIIEncoding() static private method

static private ASCIIEncoding ( ) : System
return System
        static ASCIIEncoding()
        {
            if (ByteToChar == null)
            {
                ByteToChar = new char[128];
                var ch = '\0';
                for (byte i = 0; i < 128; i++)
                {
                    ByteToChar[i] = ch++;
                }
            }
        }