Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

C# วิธีการหล่อ


ในการแคสต์องค์ประกอบ ให้ใช้เมธอด Cast()

ต่อไปนี้เป็นรายการของเรา

List<object> myList = new List<object> { "Mac", "Windows", "Linux", "Solaris" };

ตอนนี้ แคสต์และใช้วิธี Cast() ด้วยเมธอด substring() เพื่อแสดงตัวอักษรสองตัวแรกของทุกสตริงในรายการ

IEnumerable<string> res = myList.AsQueryable().Cast<string>().Select(str => str.Substring(0, 2));

มาดูตัวอย่างฉบับสมบูรณ์กันเถอะ

ตัวอย่าง

using System;
using System.Linq;
using System.Collections.Generic;
class Demo {
   static void Main() {
      List<object> list = new List<object> { "keyboard", "mouse", "joystick", "monitor" };
      // getting first 2 letters from every string
      IEnumerable<string> res = list.AsQueryable().Cast<string>().Select(str => str.Substring(0, 2));
      foreach (string str in res)
      Console.WriteLine(str);
   }
}

ผลลัพธ์

ke
mo
jo
mo