Bevisuali.UX.ExtWPF.IsNaN C# (CSharp) 메소드

IsNaN() 공개 정적인 메소드

public static IsNaN ( this a ) : bool
a this
리턴 bool
        public static bool IsNaN(this Point a)
        {
            return double.IsNaN(a.X) || double.IsNaN(a.Y);
        }