public static int GetResult<TType>(TType aObject) {
if(aObject.mValue==12)
return 99;
return 20;
}
How can I check the field mValue of TType, I'm guessing reflection may come into this, but I'm unsure how?
Thanks.
|
|
|
Generics are useful when you want to preserve strong typing and compile-time safety. If you are going to resort to Reflection no need to use generics. So one way would be to define an interface or a base class containing this property:
and then have a generic constraint on the type:
|
|||
|
|
|
Here's a pattern that I use: First create an interface:
Then an "adhoc" class that implements the interface
Now, if you have types, say, Bar and Person defined like this:
Then you can use code similar to the following;
|
||||
|
|
|
You'd need to restrict TType using the 'where' keyword to a type or interface which you know has a mValue field. If you don't want to do that, you can use the dynamic keyword e.g.
But this should be a last resort as it will fail at runtime if your object doesn't have a mValue. |
|||
|
|