I'm making app with using Xamarin.forms pcl.
I already know we use "Device.OS" to distinguish what platform is when we use pcl.
But in some cases, I need to use define header to archive it, but I can't find a solution.
I want to use different derived class for each platform in some case.
like this
#if __ANDROID__
public class SkiaView_BG : SKCanvasView
#else
public class SkiaView_BG : SKGLView
#endif