コード例 #1
0
 public void Remove(AppStartConfigElement app)
 {
     if (BaseIndexOf(app) >= 0)
     {
         BaseRemove(app.Name);
     }
 }
コード例 #2
0
        public AppStartSection()
        {
            AppStartConfigElement app = new AppStartConfigElement();

            Apps.Add(app);
        }
コード例 #3
0
 public void Add(AppStartConfigElement app)
 {
     BaseAdd(app);
 }
コード例 #4
0
 public int IndexOf(AppStartConfigElement app)
 {
     return(BaseIndexOf(app));
 }