Created
September 23, 2018 08:16
-
-
Save toptensoftware/fe337407a57425738c4ca702ff05f46e to your computer and use it in GitHub Desktop.
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
// This is the root Class1.cs file | |
public partial class Class1 | |
{ | |
public string Platform | |
{ | |
get => impl_GetPlatform(); | |
} | |
} | |
// This goes in PlatformWin/Class1.cs | |
public partial class Class1 | |
{ | |
string impl_GetPlatform() => "win"; | |
} | |
// This goes in PlatformOsx/Class1.cs | |
public partial class Class1 | |
{ | |
string impl_GetPlatform() => "osx"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment