- item
- The object to locate in the collection.
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As Processors Dim item As Processor Dim value As Boolean value = instance.Contains(item) | |
| C++/CLI | |
|---|---|
public: bool Contains( Processor^ item ) | |
Parameters
- item
- The object to locate in the collection.
Return Value
true if the item was found in the collection; false, otherwise.Determines whether the collection contains the specified Processor item.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code