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

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,847 questions

51,768 answers

573 users

How to implement list push and pop in C#

1 Answer

0 votes
using System;
using System.Collections.Generic;

public class Program
{
	static List<int> list = new List<int> { 1, 2, 3, 4 };

	public static void push(int n) {
		list.Add(n);
	}

	public static void pop() {
		list.RemoveAt(list.Count - 1);
	}

	public static void Main(string[] args)
	{
		push(23);
		push(78);
		push(99);

		foreach (int n in list) {
            Console.Write("{0, 3}", n);
        }

		pop();
		pop();
		
		Console.WriteLine();

		foreach (int n in list) {
            Console.Write("{0, 3}", n);
        }
	}
}



/*
run:
   
  1  2  3  4 23 78 99
  1  2  3  4 23
   
*/

 



answered Jun 6, 2024 by avibootz

Related questions

1 answer 137 views
2 answers 161 views
1 answer 147 views
1 answer 151 views
151 views asked Mar 10, 2024 by avibootz
1 answer 158 views
1 answer 261 views
...