Chili.Opf3 Send comments on this topic.
Intersect Method
See Also 
Chili.Opf3 Namespace > Generic ObjectSet Class : Intersect Method




objectSet
The ObjectSet used to create the intersecting set.
Creates the intersecting set of this instance and another instance of ObjectSet. Duplicates are removed (they are identified by analyzing the identifiers of the persistent objects) and the current instance of the ObjectSet is sorted by identifiers. To have the instance resorted use the Sort routine of the ObjectSet.

Syntax

Visual Basic (Declaration) 
Public Sub Intersect( _
   ByVal objectSet As ObjectSet(Of T) _
) 
Visual Basic (Usage)Copy Code
Dim instance As ObjectSet(Of T)
Dim objectSet As ObjectSet(Of T)
 
instance.Intersect(objectSet)
C# 
public void Intersect( 
   ObjectSet<T> objectSet
)
Managed Extensions for C++ 
public: void Intersect( 
   ObjectSet<T>* objectSet
) 
C++/CLI 
public:
void Intersect( 
   ObjectSet<T>^ objectSet
) 

Parameters

objectSet
The ObjectSet used to create the intersecting set.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also