LightSwitch HTML Edition
Add Method (ValueSet<T>)






Value to add to the collection.
Adds a value to the collection if not already present.
Syntax
'Declaration
 
Public Sub Add( _
   ByVal value As T _
) 
'Usage
 
Dim instance As ValueSet(Of T)
Dim value As T
 
instance.Add(value)
public void Add( 
   T value
)
public procedure Add( 
    value: T
); 
public function Add( 
   value : T
);
public: void Add( 
   T* value
) 
public:
void Add( 
   T^ value
) 

Parameters

value
Value to add to the collection.
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

Reference

ValueSet<T> Class
ValueSet<T> Members

Send Feedback