コード例 #1
0
 public void Remove(SerialCommand Command)
 {
     if (BaseIndexOf(Command) >= 0)
     {
         BaseRemove(Command.Name);
     }
 }
コード例 #2
0
        public SerialCommandCollection()
        {
            SerialCommand e = (SerialCommand)CreateNewElement();

            if (e.Name != "")
            {
                Add(e);
            }
        }
コード例 #3
0
 public void Add(SerialCommand Command)
 {
     BaseAdd(Command);
 }