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

C # Enum TryParse () วิธีการ


TryParse() วิธีการแปลงการแสดงสตริงของค่าคงที่ที่แจกแจงตั้งแต่หนึ่งค่าขึ้นไปเป็นวัตถุแจกแจงที่เทียบเท่ากัน

ขั้นแรก ตั้งค่า enum

enum Vehicle { Bus = 2, Truck = 4, Car = 10 };

ตอนนี้ ให้เราประกาศอาร์เรย์สตริงและตั้งค่าบางอย่าง

string[] VehicleList = { "2", "3", "4", "bus", "Truck", "CAR" };

ตอนนี้แยกวิเคราะห์ค่าโดยใช้วิธี Enum TryParse()

ตัวอย่าง

using System;
public class Demo {
   enum Vehicle { Bus = 2, Truck = 4, Car = 10 };
   public static void Main() {
      string[] VehicleList = { "2", "3", "4", "bus", "Truck", "CAR" };
      foreach (string val in VehicleList) {
         Vehicle vehicle;
         if (Enum.TryParse(val, true, out vehicle))
         if (Enum.IsDefined(typeof(Vehicle), vehicle) | vehicle.ToString().Contains(","))
         Console.WriteLine("Converted '{0}' to {1}", val, vehicle.ToString());
         else
         Console.WriteLine("{0} is not a value of the enum", val);
         else
         Console.WriteLine("{0} is not a member of the enum", val);
      }
   }
}

ผลลัพธ์

Converted '2' to Bus
3 is not a value of the enum
Converted '4' to Truck
Converted 'bus' to Bus
Converted 'Truck' to Truck
Converted 'CAR' to Car