Home »
.Net »
C# Programs
C# program to push elements to stack using collection
In this C# program, we will learn how to push an element into stack using collection framework? Insert operation in stack is known as push operation. Here we are using Push() method of Stack class.
Submitted by IncludeHelp, on November 21, 2017
Stack.Push() method
This is a method of 'Stack' class, it is used to pushes the element in stack.
Syntax:
void Push(object item);
Parameter(s):
item : item to be inserted into stack.
Program to push element in stack using 'Push' method in C#
using System;
using System.Collections;
namespace ConsoleApplication1
{
class Program
{
static void Main()
{
Stack S = new Stack(5);
S.Push(10);
S.Push(20);
S.Push(30);
S.Push(40);
Console.WriteLine("Elements are pushed successfully");
}
}
}
Output
Elements are pushed successfully
Note: In above program, to use 'Stack' class, we need to include System.Collection namespace.
C# Data Structure Programs »