using System; using System.Collections.Generic; using System.Text; namespace Scurvy.Media.Pipeline { public static class Platform { static Platform() { } public static bool IsXBox { get { #if XBOX return true; #else return false; #endif } } public static bool IsZune { get { #if ZUNE return true; #else return false; #endif } } } }