πŸ“šStacks in C# explained, how to use them and when to use them

ΠŸΠΎΠ΄Π΅Π»ΠΈΡ‚ΡŒΡΡ
HTML-ΠΊΠΎΠ΄
  • ΠžΠΏΡƒΠ±Π»ΠΈΠΊΠΎΠ²Π°Π½ΠΎ: 25 ΠΎΠΊΡ‚ 2024

ΠšΠΎΠΌΠΌΠ΅Π½Ρ‚Π°Ρ€ΠΈΠΈ • 8

  • @tutorialsEUC
    @tutorialsEUC  Π“ΠΎΠ΄ Π½Π°Π·Π°Π΄

    πŸš€ C# Progress Academy - Become a job-ready C# and Angular web developer to land your dream developer role: bit.ly/45vbPUg

  • @AliveNotDeadmund
    @AliveNotDeadmund 2 Π³ΠΎΠ΄Π° Π½Π°Π·Π°Π΄ +3

    A good teacher makes it sound easy, like you do here - thanks mate!

  • @denzeroneYT
    @denzeroneYT 9 мСсяцСв Π½Π°Π·Π°Π΄

    Is it possible to stack without an array/list? Show me how to create your Push, Pop, etc method.

  • @brenosouza2441
    @brenosouza2441 3 Π³ΠΎΠ΄Π° Π½Π°Π·Π°Π΄ +1

    Great teacher, please translate your courses into Spanish or Portuguese if possible. I am Brazilian and I have some of your courses, they are excellent courses. A big hug here from Brazil. Peace and light!

    • @tutorialsEUC
      @tutorialsEUC  3 Π³ΠΎΠ΄Π° Π½Π°Π·Π°Π΄ +2

      Hey! We will definitely look into it :)

  • @manuelflores5670
    @manuelflores5670 3 Π³ΠΎΠ΄Π° Π½Π°Π·Π°Π΄

    Thanks you teacher. =)

    • @tutorialsEUC
      @tutorialsEUC  3 Π³ΠΎΠ΄Π° Π½Π°Π·Π°Π΄

      You are welcome : )

  • @LulzSecurity1337
    @LulzSecurity1337 Π“ΠΎΠ΄ Π½Π°Π·Π°Π΄

    int[] numbers = new int[] { 1, 69, 666, 23, 85, 74, 23, 96, 51 };
    Stack stack = new Stack();
    numbers = numbers.OrderBy(x => x).ToArray();
    foreach (int number in numbers)
    {
    stack.Push(number);
    }
    foreach (var test in stack)
    {
    Console.WriteLine(test);
    }