ASCIIEncoding.IsSingleByte 属性

定义

获取一个可以指示当前编码是否使用单字节码位的值。

public:
 virtual property bool IsSingleByte { bool get(); };
public override bool IsSingleByte { get; }
[System.Runtime.InteropServices.ComVisible(false)]
public override bool IsSingleByte { get; }
member this.IsSingleByte : bool
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.IsSingleByte : bool
Public Overrides ReadOnly Property IsSingleByte As Boolean

属性值

Boolean

此属性始终为 true

属性

注解

IsSingleByte例如,使用属性来确定用于编码操作的字节数组的大小以及用于解码 (操作的字符数组的大小,因此字节数组的大小是 IsSingleByte * 要编码的字符数) ,应调用GetByteCount编码操作的或GetMaxByteCount方法以及GetCharCount解码操作的方法GetMaxCharCount。 这些方法在计算所需的数组大小时考虑对象的 ASCIIEncoding 替换回退策略。

适用于

另请参阅