Is there any alternative for IsSubclassOf or IsAssignableFrom in C# Metro-style?
I'm trying to make this code run on Metro but can't find alternative.
if ((ui.GetType() == type) || (ui.GetType().IsSubclassOf(type)))
{
return true;
}
|
Is there any alternative for I'm trying to make this code run on Metro but can't find alternative.
| ||||
|
feedback
|
|
Many of the reflection methods can be found in the You can get an instance of
| |||||||||||
feedback
|