ICSharpCode.NRefactory.CSharp.Resolver.CSharpResolver.IsNullableTypeOrNonValueType C# (CSharp) Method

IsNullableTypeOrNonValueType() private method

private IsNullableTypeOrNonValueType ( IType type ) : bool
type IType
return bool
		bool IsNullableTypeOrNonValueType(IType type)
		{
			return NullableType.IsNullable(type) || type.IsReferenceType != false;
		}
		
CSharpResolver