xamarin check if ios or android

Code Example - xamarin check if ios or android

                
                        if(Device.RuntimePlatform == Device.iOS)
{
    //iOS stuff
}
else if(Device.RuntimePlatform == Device.Android)
{
	//Android stuff
}