C# में Double.IsNaN () विधि का उपयोग उस मान को वापस करने के लिए किया जाता है जो इंगित करता है कि निर्दिष्ट मान एक संख्या (NaN) नहीं है।
सिंटैक्स
वाक्य रचना इस प्रकार है -
public static bool IsNaN (double val);
ऊपर, वैल डबल-सटीक फ़्लोटिंग-पॉइंट नंबर है।
उदाहरण
आइए अब एक उदाहरण देखें -
using System; public class Demo { public static void Main(){ double d = 1.0/0.0; Console.WriteLine("Double Value = "+d); Console.WriteLine("HashCode of Double Value = "+d.GetHashCode()); TypeCode type = d.GetTypeCode(); Console.WriteLine("TypeCode of Double Value = "+type); Console.WriteLine("Positive Infinity? = "+Double.IsInfinity(d)); Console.WriteLine("Check whether the specified value is NaN? = "+Double.IsNaN(d)); } }
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Double Value = ∞ HashCode of Double Value = 2146435072 TypeCode of Double Value = Double Positive Infinity? = True Check whether the specified value is NaN? = False
उदाहरण
आइए अब एक और उदाहरण देखें -
using System; public class Demo { public static void Main(){ double d = 0.0/0; Console.WriteLine("Double Value = "+d); Console.WriteLine("HashCode of Double Value = "+d.GetHashCode()); TypeCode type = d.GetTypeCode(); Console.WriteLine("TypeCode of Double Value = "+type); Console.WriteLine("Positive Infinity? = "+Double.IsInfinity(d)); Console.WriteLine("Check whether the specified value is NaN? = "+Double.IsNaN(d)); } }
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Double Value = NaN HashCode of Double Value = -524288 TypeCode of Double Value = Double Positive Infinity? = False Check whether the specified value is NaN? = True