System.Net.WebHeaderEncoding.GetString C# (CSharp) Method

GetString() static private method

static private GetString ( byte bytes, int byteIndex, int byteCount ) : string
bytes byte
byteIndex int
byteCount int
return string
        internal static unsafe string GetString(byte[] bytes, int byteIndex, int byteCount)
        {
            fixed (byte* pBytes = bytes)
                return GetString(pBytes + byteIndex, byteCount);
        }

Same methods

WebHeaderEncoding::GetString ( byte pBytes, int byteCount ) : string