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

◆ TryGetByteCount()

override bool System.Text.ASCIIEncoding.TryGetByteCount ( Rune value,
out int byteCount )
inlinesealedpackagevirtualinherited

Reimplemented from System.Text.Encoding.

Definition at line 441 of file ASCIIEncoding.cs.

442 {
443 if (value.IsAscii)
444 {
445 byteCount = 1;
446 return true;
447 }
448 byteCount = 0;
449 return false;
450 }

References System.byteCount, and System.value.