The Type class has got an Assembly attribute in .NET Framework. However this attribute is gone when you are writing an UWP which is of course using .NET Core. Only the AssemblyQ
You can use typeof(xxx).GetTypeInfo().Assembly to get Assembly。
typeof(xxx).GetTypeInfo().Assembly
Ok I have overlooked the TypeInfo class that is available using GetTypeInfo on a Type object. TypeInfo has got the Assembly property.