Пример #1
0
 public void Update(int index, Feature feat)
 {
     FeatureList[index] = feat;
 }
Пример #2
0
        public void Add(string variable, string name, string description = "", bool enabled = true, bool allowchange = true, string configurableDir = "")
        {
            Feature feature = new Feature(variable, name, description, enabled, allowchange, configurableDir);

            Add(feature);
        }
Пример #3
0
 public void Remove(Feature feature)
 {
     FeatureList.Remove(feature);
 }