Add Method
See Also 
SourceCode.Framework Namespace > IPersistableList Interface : Add Method



item
The object to add

Glossary Item Box

When implemented by a class, adds and item of type "object" to the PersistableList object.

Syntax

Visual Basic (Declaration) 
Sub Add( _
   ByVal item As Object _
) 
Visual Basic (Usage)Copy Code
Dim instance As IPersistableList
Dim item As Object
 
instance.Add(item)
C# 
void Add( 
   object item
)
C++/CLI 
void Add( 
   Object^ item
) 

Parameters

item
The object to add

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also