9 overrides of GetCharCount
mscorlib (6)
system\text\asciiencoding.cs (1)
248
public override unsafe int
GetCharCount
(byte[] bytes, int index, int count)
system\text\encodingnls.cs (1)
225
public override unsafe int
GetCharCount
(byte[] bytes, int index, int count)
system\text\unicodeencoding.cs (1)
285
public override unsafe int
GetCharCount
(byte[] bytes, int index, int count)
system\text\utf32encoding.cs (1)
287
public override unsafe int
GetCharCount
(byte[] bytes, int index, int count)
system\text\utf7encoding.cs (1)
355
public override unsafe int
GetCharCount
(byte[] bytes, int index, int count)
system\text\utf8encoding.cs (1)
317
public override unsafe int
GetCharCount
(byte[] bytes, int index, int count)
System.Runtime.Serialization (2)
System\Text\Base64Encoding.cs (1)
292
public override int
GetCharCount
(byte[] bytes, int index, int count)
System\Text\BinHexEncoding.cs (1)
130
public override int
GetCharCount
(byte[] bytes, int index, int count)
System.Xml (1)
System\Xml\XmlEncoding.cs (1)
210
public override int
GetCharCount
( byte[] bytes, int index, int count ) {
6 references to GetCharCount
mscorlib (4)
system\text\encoding.cs (4)
1169
return
GetCharCount
(bytes, 0, bytes.Length);
1202
return
GetCharCount
(arrbyte, 0, count);
1234
char[] result = new char[
GetCharCount
(bytes, index, count)];
1854
return m_encoding.
GetCharCount
(bytes, index, count);
System.Windows.Forms (2)
winforms\Managed\System\WinForms\TextBoxBase.cs (2)
2100
int newStart = start == 0 ? 0 : e.
GetCharCount
(bytes, 0, start);
2101
end = newStart + e.
GetCharCount
(bytes, start, end - start);