このStackOverflow questionに対する受け入れられた回答によると、System.Type.Equals
メソッドと次の違いがありSystem.Type operator ==
ます。
a runtime type (represented by the internal type RuntimeType), managed by
the CLR is not always the same as a Type, which can be extended. Equals
will check the underlying system type, whereas == will check the type itself.
.NET for Windows Store Appsでは、System.Type 演算子 ==は使用できません。
System.Type operator ==
の機能をWindows ストア アプリケーションで完全に再現するにはどうすればよいですか? または、特定の等値演算子の機能は、 Windows ストア アプリSystem.Type
とは関係ありませんか?