System.Text.ASCIIEncoding.GetCharCount C# (CSharp) Метод

GetCharCount() приватный Метод

private GetCharCount ( byte bytes, int count ) : int
bytes byte
count int
Результат int
        public unsafe override int GetCharCount(byte* bytes, int count)
        {
            throw null;
        }

Same methods

ASCIIEncoding::GetCharCount ( byte bytes, int index, int count ) : int

Usage Example

 private void DoPosTest(ASCIIEncoding ascii, byte[] bytes, int index, int count)
 {
     int actualValue;
     ascii = new ASCIIEncoding();
     actualValue = ascii.GetCharCount(bytes, index, count);
     Assert.Equal(count, actualValue);
 }
All Usage Examples Of System.Text.ASCIIEncoding::GetCharCount