หากต้องการเพิ่มค่าจำนวนเต็มในรายการในภาษา C# ให้ใช้เมธอด Add()
ประการแรก ประกาศรายการจำนวนเต็มในภาษา C# -
List<int> list1 = new List<int>();
ตอนนี้เพิ่มค่าจำนวนเต็ม -
list1.Add(900); list1.Add(400); list1.Add(300);
ให้เราดูรหัสที่สมบูรณ์ -
ตัวอย่าง
using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Demo { public class Program { public static void Main(String[] args) { List<int> list1 = new List<int>(); list1.Add(900); list1.Add(400); list1.Add(300); Console.WriteLine(list1.Count); } } }