
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
Get object at the top of the Stack in C#
To get object at the top of the Stack, the code is as follows −
Example
using System; using System.Collections.Generic; public class Demo { public static void Main() { Stack<string> stack = new Stack<string>(); stack.Push("A"); stack.Push("B"); stack.Push("C"); stack.Push("D"); stack.Push("E"); stack.Push("F"); stack.Push("G"); stack.Push("H"); stack.Push("I"); stack.Push("J"); Console.WriteLine("Count of elements = "+stack.Count); Console.WriteLine("Element at the top of stack = " + stack.Peek()); } }
Output
This will produce the following output −
Count of elements = 10 Element at the top of stack = J Count of elements = 10
Example
Let us see another example −
using System; using System.Collections.Generic; public class Demo { public static void Main() { Stack<int> stack = new Stack<int>(); stack.Push(10); stack.Push(20); stack.Push(30); stack.Push(40); stack.Push(50); stack.Push(60); stack.Push(70); stack.Push(80); stack.Push(90); stack.Push(100); Console.WriteLine("Count of elements = "+stack.Count); Console.WriteLine("Element at the top of stack = " + stack.Peek()); Console.WriteLine("Element at the top of stack = " + stack.Peek()); } }
Output
This will produce the following output −
Count of elements = 10 Element at the top of stack = 100 Element at the top of stack = 100
- Related Articles
- Insert an object at the top of the Stack in C#
- How to get top activity name in activity stack?
- FabricJS – How to move a Line object to the top of the stack of drawn objects?
- How to move an object to the top of the stack of drawn objects in IText using FabricJS?
- Get the object at the beginning of the Queue – Peek Operation in C#
- stack top() in C++ STL
- Get the number of elements contained in the Stack in C#
- Program to find to get minimum cost to climb at the top of stairs in Python?
- Get and Set the stack size of thread attribute in C
- How to get Synchronize access to the Stack in C#?
- How to bring an activity to the foreground i.e. top of stack using Kotlin?
- Get the capacity of the StringBuffer Object in Java
- The temperature at the foot of a mountain is $+$ 8°C. It fell down by 10°C at the top of the mountain. The temperature recorded at the top is?
- Count the number of pop operations on stack to get each element of the array in C++
- FabricJS – How to move a Line object to the bottom of the stack of drawn objects?

Advertisements