Adds an item to the IList.

Namespace: Dapfor.Net.Data
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
public int Add(
	Object value
)
Visual Basic
Public Function Add ( 
	value As Object
) As Integer
Visual C++
public:
virtual int Add(
	Object^ value
) sealed
F#
abstract Add : 
        value : Object -> int 
override Add : 
        value : Object -> int 

Parameters

value
Type: System..::..Object
The Object to add to the IList.

Return Value

Type: Int32
The position into which the new element was inserted.

Implements

IList..::..Add(Object)

Exceptions

ExceptionCondition
System..::..NotSupportedException The IList is read-only. -or- The IList has a fixed size.

See Also