Beispiel #1
0
        // initializing local config
        static public void Initialize(int mask)
        {
            if (Local == null && ((mask & 1) != 0))
            {
                Local = new ConfigSet();
                Local.Load();
            }

            if (Remote == null && ((mask & 2) != 0))
            {
                Remote = new RemoteConfig();
                Remote.Load();
            }
        }