Microsoft.CSharp.RuntimeBinder.Semantics.CType.IsNonNubValType C# (CSharp) Méthode

IsNonNubValType() public méthode

public IsNonNubValType ( ) : bool
Résultat bool
        public bool IsNonNubValType()
        {
            switch (GetTypeKind())
            {
                case TypeKind.TK_TypeParameterType:
                    return AsTypeParameterType().IsNonNullableValueType();
                case TypeKind.TK_AggregateType:
                    return AsAggregateType().getAggregate().IsValueType();
                case TypeKind.TK_NullableType:
                    return false;
                default:
                    return false;
            }
        }
        public bool IsRefType()