Skip to content

Instantly share code, notes, and snippets.

@adamped
Created January 20, 2016 06:42
Show Gist options
  • Save adamped/e74e3be7121e8d3f4b09 to your computer and use it in GitHub Desktop.
Save adamped/e74e3be7121e8d3f4b09 to your computer and use it in GitHub Desktop.
public string GetPlatform()
{
var path = "unknown";
#if WINDOWS_PHONE
path = "windowsphone";
#else
#if __SILVERLIGHT__
path = "silverlight";
#else
#if __ANDROID__
path = "android";
#else
#if __IOS__
path = "iOS";
#else
#if __TVOS__
path = "tv";
#else
#if __WATCHOS__
path = "watch";
#endif
return path;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment