Computer >> Máy Tính >  >> Lập trình >> C#

Chèn tại chỉ mục được chỉ định trong StringCollection trong C #


Để chèn chỉ mục được chỉ định trong StringCollection, mã như sau -

Ví dụ

 using System; using System.Collections.Specialized; public class Demo {public static void Main () {StringCollection strCol =new StringCollection (); strCol.Add ("Phụ kiện"); strCol.Add ("Sách"); strCol.Add ("Điện tử"); Console.WriteLine ("Các phần tử của StringCollection ..."); foreach (chuỗi res trong strCol) {Console.WriteLine (res); } strCol.Insert (2, "Tai nghe"); Console.WriteLine ("Các phần tử của StringCollection ... ĐÃ CẬP NHẬT"); foreach (chuỗi res trong strCol) {Console.WriteLine (res); }}} 

Đầu ra

Điều này sẽ tạo ra kết quả sau -

 Phần tử chuỗi Bộ sưu tập ... Phụ kiện Sách Điện tử Chuỗi Phần tử bộ sưu tập ... 

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ khác -

 using System; using System.Collections.Specialized; public class Demo {public static void Main () {StringCollection strCol =new StringCollection (); strCol.Add ("Máy tính xách tay"); strCol.Add ("Màn hình nền"); strCol.Add ("Máy tính bảng"); strCol.Add ("Loa"); Console.WriteLine ("Các phần tử của StringCollection ..."); foreach (chuỗi res trong strCol) {Console.WriteLine (res); } strCol.Insert (2, "Tai nghe"); strCol.Insert (3, "Alienware"); Console.WriteLine ("Các phần tử của StringCollection ... ĐÃ CẬP NHẬT"); foreach (chuỗi res trong strCol) {Console.WriteLine (res); } strCol.Insert (4, "Máy đọc sách điện tử"); strCol.Insert (5, "Màn hình"); strCol.Insert (6, "HDD"); strCol.Insert (7, "SSD"); Console.WriteLine ("Các phần tử của StringCollection ... ĐÃ CẬP NHẬT"); foreach (chuỗi res trong strCol) {Console.WriteLine (res); }}} 

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Các phần tử
 StringCollection ... Máy tính xách tayDesktopTabletSpeakersStringCác phần tử của bộ sưu tập ... Máy tính xách tay CẬP NHẬTDesktopHeadphoneAlienwareTabletSpeakersString các phần tử ...