17. Generic Stack in C# | احترف السي شارب بالعربي
ฝัง
- เผยแพร่เมื่อ 26 ม.ค. 2025
- A stack is an abstract data type that follows the Last In First Out (LIFO) principle. It is a collection of elements that allows two main operations: push, which adds an element to the collection, and pop, which removes the most recently added element that was not yet removed. Additionally, a peek operation can return the value of the last element added without modifying the stack. Stacks are commonly used in computer science for a variety of applications, including the evaluation of expressions, function calls, and memory management
كورس سي شارب للمبتدئين
• كورس سي شارب للمبتدئين
ASP.NET Core مقدمة في تعلم
• ASP.NET Core مقدمة في ...
▬▬▬▬▬▬ Subscribe NOW! ▬▬▬▬▬▬
cutt.ly/5jib8Fd
▬▬▬▬▬▬ Our Social Media Platforms ▬▬▬▬▬▬
Facebook ► / codographia
Facebook Group ► / codographia
Instagram ► / codographia
Buy Me Coffee ► www.buymeacoff...
كالعاده الاسلوب السهل البسيط لتوصيل المعلومه الف شكر وفى انتظار باقى دروس السلسلة
لماذا خمسة فيديوهات منها مخفية Hidden ؟
ممكن حل لسؤال اقلب اسم متل ملاك يصير كالم
هات الاكونت بتاعك وانا ادخل احللك عشان متتعبش نفسك
ممكن حل ل سؤال تفرقة الكلمة مثل world تصير w o r l d
using System.Text;
string str = "world";
StringBuilder sb = new StringBuilder();
foreach (char c in str)
sb.Append(c + " ");
Console.WriteLine(sb);
string str = "world";
Console.WriteLine(Regex.Replace(str, @"(\w)", s => s.Groups[1].Value.Insert(1, " ")));
يا هندسه هتشرح event& delegate؟؟؟
اه والله بس ماشي بتسلسل
@@Codographia تمام يا هندسه جزاك الله خيرا ♥️♥️