IsNull Function |
Namespace: XSharp.VFP
FUNCTION IsNull( eExpression ) AS LOGIC CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })] public static bool IsNull( Usual eExpression = default )
1Store .NULL. To mNullvalue // Store a null value to a memory variable 2Clear 3? mNullvalue // Display the value of the memory variable 4? IsNull(mNullvalue) // Returns .T., indicating a null value 5? TYPE('mNullvalue') // Returns L, indicating a logical value 6? (mNullvalue = .NULL.) // Returns .NULL., bad test for null values