ISignedZeroOption.IsZeroSigned 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 -0 的格式是“-0”还是“0”。
public:
property bool IsZeroSigned { bool get(); void set(bool value); };
bool IsZeroSigned();
void IsZeroSigned(bool value);
public bool IsZeroSigned { get; set; }
var boolean = iSignedZeroOption.isZeroSigned;
iSignedZeroOption.isZeroSigned = boolean;
Public Property IsZeroSigned As Boolean
属性值
Boolean
bool
如果 - 0 的格式设置为“-0”,则为 True;如果 -0 的格式设置为“0”,则为 false 。
注解
可以将此属性设置为指定格式化程序类将负 0 显示为“-0”。 这样,当“-0”表示一些小负值 ((如 -0.00001) )的舍入值时,你希望显示“-0”。
此属性默认为 false ,以便与 Windows 8 和 Windows Server 2012 保持一致,其中 -0 的格式始终为“0”。