Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetCharCount() [3/5]

override int System.Text.Latin1Encoding.GetCharCount ( byte[] bytes)
inlinevirtualinherited

Reimplemented from System.Text.Encoding.

Definition at line 246 of file Latin1Encoding.cs.

247 {
248 if (bytes == null)
249 {
250 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.bytes);
251 }
252 return bytes.Length;
253 }

References System.bytes, and System.ThrowHelper.ThrowArgumentNullException().