Beispiel #1
0
        public GodModeFeatureCollection Combine(GodModeFeatureCollection with)
        {
            foreach (var key in with.Keys.Where(key => !this.ContainsKey(key)))
            {
                this.Add(key, with[key]);
            }

            return(this);
        }
        public WindowsApplicationContext()
        {
            GodModeFeatures = new GodModeFeatureCollection(); // Not supported, yet
#if DEBUG
            IsDebugMode = true;
#else
            IsDebugMode = false;
#endif
        }
Beispiel #3
0
 public WindowsApplicationContext()
 {
     GodModeFeatures = new GodModeFeatureCollection(); // Not supported, yet
     IsDebugMode     = false;                          // Not supported, yet
 }