Is there any equivalent of Type.IsInterface or IsClass in Windows Store .NET?
c#, windows-runtime
Solution
On WinRT, most reflection methods are accessible through `TypeInfo`.
You can get a type's `TypeInfo` through the `GetTypeInfo` extension method, available under the `System.Reflection` namespace
typeof(string).GetTypeInfo().IsInterface
Problem
I can't find anything. I want to check if type is not interface.