PlayMakerArrayListProxy.Remove C# (CSharp) 메소드

Remove() 공개 메소드

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

        return false;
    }