PlayMakerArrayListProxy.Remove C# (CSharp) Method

Remove() public method

public Remove ( object value, string type ) : bool
value object
type string
return bool
    public bool Remove(object value,string type)
    {
        if (arrayList.Contains(value)){
            arrayList.Remove(value);
            dispatchEvent(removeEvent,value,type);
            return true;
        }

        return false;
    }