

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Check if a Stack contains an element in C#
To check if a Stack has elements, use the C# Contains() method. Following is the code −
Example
using System; using System.Collections.Generic; public class Demo { public static void Main(){ Stack<int> stack = new Stack<int>(); stack.Push(100); stack.Push(150); stack.Push(175); stack.Push(200); stack.Push(225); stack.Push(250); stack.Push(300); stack.Push(400); stack.Push(450); stack.Push(500); Console.WriteLine("Elements in the Stack:"); foreach(var val in stack){ Console.WriteLine(val); } Console.WriteLine("Count of elements in the Stack = "+stack.Count); Console.WriteLine("Does Stack has the element 400?= "+stack.Contains(400)); } }
Output
This will produce the following output −
Elements in the Stack: 500 450 400 300 250 225 200 175 150 100 Count of elements in the Stack = 10 Does Stack has the element40400?= True
Example
Let us see another example −
using System; using System.Collections.Generic; public class Demo { public static void Main(){ Stack<string> stack = new Stack<string>(); stack.Push("Steve"); stack.Push("Gary"); stack.Push("Stephen"); stack.Push("Nathan"); stack.Push("Katie"); stack.Push("Andy"); stack.Push("David"); stack.Push("Amy"); Console.WriteLine("Elements in the Stack:"); foreach(var val in stack){ Console.WriteLine(val); } Console.WriteLine("Count of elements in the Stack = "+stack.Count); Console.WriteLine("Does Stack has the element 400?= "+stack.Contains("Michael")); } }
Output
This will produce the following output −
Elements in the Stack: Amy David Andy Katie Nathan Stephen Gary Steve Count of elements in the Stack = 8 Does Stack has the element 400?= False
- Related Questions & Answers
- How to check if a slice contains an element in Golang?
- Check if the SortedSet contains a specific element in C#
- Check if a HashSet contains the specified element in C#
- How to check if Java list contains an element or not?
- Check if an array is stack sortable in C++
- Method to check if array element contains a false value in JavaScript?
- Java Program to find if an element is in Stack
- Java Program to Check if An Array Contains a Given Value
- Check if a string contains numbers in MySQL?
- How to check if ArrayList contains an item in Java?
- Check if a field contains a string in MongoDB?
- Remove an element from a Stack in Java
- Add an element to a Stack in Java
- How to check if an input string contains a specified substring in JSP?
- Check if an array contains all elements of a given range in Python
Advertisements