Is there a way of "strictly" con-straining or enforcing the type that can be use.
S <: T
Something like
Method( value As T ) ' Any Type of T including subtypes of T
Method( value Is T ) ' Only take a T not a subtype of T
I can do this at runtime
If TypeOf value Is T Then
But this is a runtime check, compile-time checking would be more preferable
Option Strict On
This only restricts it to (implicit) Type Widening Coerecions.
I would like were all Type Coerecions have to be Explicit.
Is it possible? If so how?