Home »
VB.Net »
VB.Net Programs
VB.Net program to push or insert the item into a stack using the collection
By Nidhi Last Updated : November 16, 2024
Push an item into a stack using the collection in VB.Net
Here, we will use the Push() method of the Stack collection class to insert an item into the stack.
Program/Source Code:
The source code to push or insert the item into the stack using collection is given below. The given program is compiled and executed successfully.
VB.Net code to push or insert the item into a stack using the collection
'VB.Net program to push or insert an item into
'a stack using the collection.
Imports System
Imports System.Collections
Module Module1
Sub Main()
Dim stk As New Stack(5)
stk.Push(10)
stk.Push(20)
stk.Push(30)
stk.Push(40)
Console.WriteLine("Elements are inserted successfully")
End Sub
End Module
Output
Elements are inserted successfully
Press any key to continue . . .
Explanation
In the above program, we created a module Module1 that contains the Main() function. The Main() function is the entry point for the program, Here, we created an object of Stack collection class for 5 elements. After that we inserted 4 items into the stack using the Push() method of Stack collection class and then print the "Elements are inserted successfully" message on the console screen.
VB.Net Data Structure Programs »