How to call a specific method for some specific Platform only? Technology Community › Category: Xamarin › How to call a specific method for some specific Platform only? 0 Vote Up Vote Down VietMX Staff asked 4 years ago We can use the Device.RuntimePlatform enumeration to check for the platform as below: if (Device.RuntimePlatform == Device.iOS) { //Call the iOS Specific Method here }