Microsoft.CSharp.RuntimeBinder.Semantics.ConstValFactory.GetNullRef C# (CSharp) 메소드

GetNullRef() 공개 정적인 메소드

public static GetNullRef ( ) : CONSTVAL
리턴 CONSTVAL
        public static CONSTVAL GetNullRef()
        {
            return new CONSTVAL();
        }

Usage Example

 public EXPR CreateNull()
 {
     return(CreateConstant(GetTypes().GetNullType(), ConstValFactory.GetNullRef()));
 }