Bender.Collections.GenericListAdapter.Add C# (CSharp) Method

Add() public method

public Add ( object value ) : int
value object
return int
        public int Add(object value)
        {
            _type.InvokeAction("Add", _list, value);
            return _type.InvokeFunc<int>("IndexOf", _list, value);
        }