I have a method with a ref control type parameter which I want to call by passing a ref button type parameter.
Well the compiler doesn't accept this, I have to change the ref control type to ref button type.
Why ?
|
|
I have a method with a ref control type parameter which I want to call by passing a ref button type parameter. Well the compiler doesn't accept this, I have to change the ref control type to ref button type. Why ?
|
||
|
|
You can get around some of the typing limitations with generics.
Now you can call:
You can pass a reference of any type into it that derives from control. Real life scenario:
|
||||||||||
|
|
|
According to C# spec:
Otherwise it is possible that a value of inappropriate type (to your button filed reference to checkbox instance) will be assigned to a variable you pass. |
||
|
|
|
|
Because this will cause many problems ...
|
||||||
|
|
|
From the C# specification:
|
||
|
|
refis even necessary considering you're passing an object. – Austin Salonen Sep 15 at 18:55