我想做点什么
#if __IOS__
using System.Drawing;
using UIKit;
using CoreGraphics;
#endif
#if __ANDROID__
using Android.Graphics;
#endif
但由于PCL中不允许#if指令,我似乎无法做
if (Device.OS == TargetPlatform.iOS)
{
using System.Drawing;
using UIKit;
using CoreGraphics;
}
else if (Device.OS == TargetPlatform.Android){
using Android.Graphics;
}
由于这些声明不能在命名空间中完成,我想知道是否有任何其他方法可以用来在使用Xamarin表单的PCL项目中实现我的目标。
我是C#和Xamarin表单的新手,所以我们将非常感谢您的帮助。提前致谢