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

โปรแกรม C# แปลงอาร์เรย์จำนวนเต็มเป็นอาร์เรย์สตริง


ใช้เมธอด ConvertAll เพื่อแปลงอาร์เรย์จำนวนเต็มเป็นอาร์เรย์สตริง

ตั้งค่าอาร์เรย์จำนวนเต็ม -

int[] intArray = new int[5];

// Integer array with 5 elements
intArray[0] = 15;
intArray[1] = 30;
intArray[2] = 44;
intArray[3] = 50;
intArray[4] = 66;

ตอนนี้ใช้วิธี Array.ConvertAll() เพื่อแปลงอาร์เรย์จำนวนเต็มเป็นอาร์เรย์สตริง -

Array.ConvertAll(intArray, ele => ele.ToString());

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

ตัวอย่าง

using System;
using System.Text;
public class Demo {
   public static void Main() {
      int[] intArray = new int[5];
      // Integer array with 5 elements
      intArray[0] = 15;
      intArray[1] = 30;
      intArray[2] = 44;
      intArray[3] = 50;
      intArray[4] = 66;
      string[] strArray = Array.ConvertAll(intArray, ele => ele.ToString());
      Console.WriteLine(string.Join("|", strArray));
   }
}

ผลลัพธ์

15|30|44|50|66