Microsoft.CSharp.RuntimeBinder.Semantics.NullableType.SetUnderlyingType C# (CSharp) Method

SetUnderlyingType() public method

public SetUnderlyingType ( CType pType ) : void
pType CType
return void
        public void SetUnderlyingType(CType pType) { UnderlyingType = pType; }

Usage Example

Esempio n. 1
0
        public NullableType CreateNullable(Name name, CType pUnderlyingType, BSYMMGR symmgr, TypeManager typeManager)
        {
            NullableType type = new NullableType();

            type.SetName(name);
            type.SetUnderlyingType(pUnderlyingType);
            type.symmgr      = symmgr;
            type.typeManager = typeManager;

            type.SetTypeKind(TypeKind.TK_NullableType);
            return(type);
        }
All Usage Examples Of Microsoft.CSharp.RuntimeBinder.Semantics.NullableType::SetUnderlyingType