Ejemplo n.º 1
0
        /// <summary>
        /// Gets the Active Game In a File System Appropriate Format
        /// </summary>
        public static string ToFileSystemAppropriate(this string x)
        {
#if WINDOWS
            return(x.Replace(" ", "").Replace(".", ""));
#else
            return(ActiveGame.Replace(" ", "").Replace(".", ""));
#endif
        }