System.Net.WebHeaderCollection.HeaderEncoding.GetString C# (CSharp) Method

GetString() static private method

static private GetString ( byte pBytes, int byteCount ) : string
pBytes byte
byteCount int
return string
            internal static unsafe string GetString(byte* pBytes, int byteCount)
            {
                if (byteCount < 1)
                    return "";

                string s = new String('\0', byteCount);

                fixed (char* pStr = s)
                {
                    char* pString = pStr;
                    while (byteCount >= 8)
                    {
                        pString[0] = (char) pBytes[0];
                        pString[1] = (char) pBytes[1];
                        pString[2] = (char) pBytes[2];
                        pString[3] = (char) pBytes[3];
                        pString[4] = (char) pBytes[4];
                        pString[5] = (char) pBytes[5];
                        pString[6] = (char) pBytes[6];
                        pString[7] = (char) pBytes[7];
                        pString += 8;
                        pBytes += 8;
                        byteCount -= 8;
                    }
                    for (int i = 0; i < byteCount; i++)
                    {
                        pString[i] = (char) pBytes[i];
                    }
                }

                return s;
            }

Same methods

WebHeaderCollection.HeaderEncoding::GetString ( byte bytes, int byteIndex, int byteCount ) : string
WebHeaderCollection.HeaderEncoding