Stack.Contains(Object) Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether an element is in the Stack.
public:
virtual bool Contains(System::Object ^ obj);
public virtual bool Contains(object obj);
public virtual bool Contains(object? obj);
abstract member Contains : obj -> bool
override this.Contains : obj -> bool
Public Overridable Function Contains (obj As Object) As Boolean
true
, if obj
is found in the Stack; otherwise, false
.
This method determines equality by calling the Object.Equals method.
This method performs a linear search; therefore, this method is an O(n)
operation, where n
is Count.
Starting with the .NET Framework 2.0, this method tests for equality by passing the obj
argument to the Equals method of individual objects in the collection. In the earlier versions of the .NET Framework, this determination was made by using passing the individual items in the collection to the Equals method of the obj
argument.
Product | Versions |
---|---|
.NET | Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10 |
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |
UWP | 10.0 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: