Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,166 questions

40,722 answers

573 users

How to use stack in C#

5 Answers

0 votes
using System;
using System.Collections;
 
class Program
{
    static void Main() {
        Stack st = new Stack();
        
        st.Push("c#");
        st.Push("c");
        st.Push("php");
        st.Push("java");
        st.Push("python");


        foreach (object item in st) {
           Console.WriteLine(item);
        }
    }
}

 
 
/*
run:
 
python
java
php
c
c#
 
*/

 





answered Sep 11, 2019 by avibootz
0 votes
using System;
using System.Collections;
 
class Program
{
    static void Main() {
        Stack st = new Stack();
        
        st.Push("c#");
        st.Push("c");
        st.Push("php");
        st.Push("java");
        st.Push("python");


        foreach (object item in st) {
           Console.WriteLine(item);
        }
        
        Console.WriteLine('\n');
        
        st.Pop();
        st.Pop();
        
        foreach (object item in st) {
           Console.WriteLine(item);
        }
    }
}

 
 
/*
run:
 
python
java
php
c
c#


php
c
c#
 
*/

 





answered Sep 11, 2019 by avibootz
0 votes
using System;
using System.Collections;
  
class Program
{
    static void Main() {
        Stack st = new Stack();
         
        st.Push("c#");
        st.Push("c");
        st.Push("php");
        st.Push("java");
        st.Push("python");
 
 
        if (st.Contains("java")) {
           Console.WriteLine("yes");
        }
    }
}
 
  
  
/*
run:
  
yes
  
*/

 





answered Sep 12, 2019 by avibootz
0 votes
using System;
using System.Collections;
  
class Program
{
    static void Main() {
        Stack st = new Stack();
         
        st.Push("c#");
        st.Push("c");
        st.Push("php");
        st.Push("java");
        st.Push("python");
 
 
        foreach (object item in st) {
           Console.WriteLine(item);
        }
         
        Console.WriteLine('\n');
         
        Console.WriteLine(st.Pop().ToString());
        Console.WriteLine(st.Pop().ToString());

        Console.WriteLine('\n');

        foreach (object item in st) {
           Console.WriteLine(item);
        }
    }
}
 
  
  
/*
run:
  
python
java
php
c
c#


python
java


php
c
c#
  
*/

 





answered Sep 12, 2019 by avibootz
0 votes
using System;
using System.Collections;
  
class Program
{
    static void Main() {
        Stack st = new Stack();
         
        st.Push("c#");
        st.Push("c");
        st.Push("php");
        st.Push("java");
        st.Push("python");
  
        Console.WriteLine(st.Count);
    }
}
 
  
  
/*
run:
  
5
  
*/

 





answered Sep 12, 2019 by avibootz

Related questions

1 answer 30 views
1 answer 24 views
1 answer 56 views
56 views asked Aug 4, 2022 by avibootz
2 answers 85 views
85 views asked Dec 13, 2020 by avibootz
2 answers 68 views
68 views asked Nov 25, 2020 by avibootz
...