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

โปรแกรม C# เพื่อแสดงองค์ประกอบแรกจากอาร์เรย์


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

double[] myArr = {20.5, 35.6, 45.7, 55.6, 79.7};

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

myArr.AsQueryable().First();

ให้เราดูรหัสที่สมบูรณ์ -

ตัวอย่าง

using System;
using System.Linq;
using System.Collections.Generic;
class Demo {
   static void Main() {
      double[] myArr = {20.5, 35.6, 45.7, 55.6, 79.7};
      double res = myArr.AsQueryable().First();
      Console.WriteLine(res);
   }
}

ผลลัพธ์

20.5