次の定義の C# 置換は何ですか?
#define IS_FINITE(x) (0x7FF0 != (*((unsigned short*)(&x) + 3) & 0x7FF0))
多分double.IsInfinity(x) == false
またはdouble.IsNegativeInfinity(x) == false
?
ありがとう。
!double.IsInfinity(x) && !double.IsNaN(x)
参考文献:
http://pubs.opengroup.org/onlinepubs/009604499/functions/isfinite.html
http://msdn.microsoft.com/en-us/library/system.double.isinfinity.aspx
http://msdn. microsoft.com/en-us/library/system.double.isnan.aspx