Add an element to the list.
Namespace: nom.tam.util
Assembly: CSharpFITS_v1.1 (in CSharpFITS_v1.1.dll)
Syntax
| Visual Basic (Declaration) |
|---|
| Public Function Add( _ ByVal pos As Integer, _ ByVal key As Object, _ ByVal val As Object _ ) As Boolean |
| C# |
|---|
| public bool Add( int pos, object key, object val ) |
| C++ |
|---|
| public: bool Add( int pos, Object key, Object val ) sealed |
| J# |
|---|
| public bool Add( int pos, object key, object val ) |
| JScript |
|---|
| public
function Add( pos : int, key : Object, val : Object ) : bool |
Parameters
- pos
- The element after which the current element be placed. If pos is null put the element at the end of the list.
- key
- The hash key for the new object. This may be null for an unkeyed entry.
- val