Skip to content

Instantly share code, notes, and snippets.

@toptensoftware
Created September 23, 2018 08:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toptensoftware/fe337407a57425738c4ca702ff05f46e to your computer and use it in GitHub Desktop.
Save toptensoftware/fe337407a57425738c4ca702ff05f46e to your computer and use it in GitHub Desktop.
// 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