public override bool Equals(object other)
            {
                if (null == other)
                {
                    return(false);
                }

                AvailableArrayProcessor anotherOne = other as AvailableArrayProcessor;

                return(this.mInstance.Equals(anotherOne.mInstance));
            }
 public void Remove(AvailableArrayProcessor plugin)
 {
     this.List.Remove(plugin);
 }
 // Adds new plug-in to the collection.
 public void Add(AvailableArrayProcessor plugin)
 {
     this.List.Add(plugin);
 }