Exemplo n.º 1
0
        public static string GetAppPath()
        {
            GlobalDataStore theStore;

            theStore = GlobalDataStore.GetInstance(); // construct if not constructed...

            if (appPath == string.Empty)
            {
                appPath  = System.IO.Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
                appPath += @"\";
            }
            return(appPath);
        }