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?

link|improve this question

43% accept rate
What are you doing where a subtype cannot be a valid substitution for a base type (generally violating Liskov Substitution Principle)? Your scenario might lend itself towards a pattern such as Visitor. – Anthony Pegram Feb 20 at 15:43
feedback

2 Answers

Do you mean something like:

private void Method<T>(T mytype) where T: MyClass
{
}

That is possible solution

link|improve this answer
1  
Still allows subclasses of MyClass to be passed in. – Joachim Isaksson Feb 20 at 15:47
yes and that is the answer for your 1st part question. You can read more about constraints: msdn.microsoft.com/en-us/library/d5x73970(v=vs.80).aspx – alexsuslin Feb 20 at 15:50
feedback

No, as a user of a type - you have no say in whether you will accept derived types. If you are the owner of a type, then you can not allow derived types by marking your class as sealed.

That being said, your request goes against a number of OOD principles. You may want to rethink your design if this is actually necessary.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.