Created
August 12, 2016 16:16
-
-
Save LanceMcCarthy/1e0c29e0b86478f301cb1a1738cf2a92 to your computer and use it in GitHub Desktop.
Custom OnPlatform
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class OnTargetPlatform<T> : OnPlatform<T> | |
{ | |
public T Windows { get; set; } | |
public static implicit operator T(OnTargetPlatform<T> onPlatform) => Device.OS == TargetPlatform.Windows ? onPlatform.Windows : (OnPlatform<T>) onPlatform; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment