为什么 Reflection.Emit 在 Xamarin.Android 可移植项目中不可用?
Why Reflection.Emit is not available on Xamarin.Android portable project?
我知道 Android 支持 JIT,因此 Reflection.Emit
应该可以在该平台上使用。但是当我 select .NET 4 + Xamarin.Android 目标在便携式 Class 库项目属性中时,我无法使用 Reflection.Emit
.
这是因为Visual Studio将不支持System.Reflection.Emit
的其他平台(like iOS)添加到目标配置文件。
如果您想使用此 API,请使用 shared project 或使用文件链接。
我知道 Android 支持 JIT,因此 Reflection.Emit
应该可以在该平台上使用。但是当我 select .NET 4 + Xamarin.Android 目标在便携式 Class 库项目属性中时,我无法使用 Reflection.Emit
.
这是因为Visual Studio将不支持System.Reflection.Emit
的其他平台(like iOS)添加到目标配置文件。
如果您想使用此 API,请使用 shared project 或使用文件链接。