Nhận mảng giá trị của các hằng số trong một kiểu liệt kê đã chỉ định.
Đây là enum của chúng tôi.
enum Rank { Jack = 10, Tom = 19, Tim = 26 };
Bây giờ, lấy tất cả các giá trị của enum dưới dạng một mảng và hiển thị bằng phương thức GetValues ().
foreach(int res in Enum.GetValues(typeof(Rank))) { Console.WriteLine(res); }
Hãy để chúng tôi xem toàn bộ ví dụ.
Ví dụ
using System; public class Demo { enum Rank { Jack = 10, Tom = 19, Tim = 26 }; public static void Main() { Console.WriteLine("Here are the university rank of MCA Students College ABC:"); foreach(int res in Enum.GetValues(typeof(Rank))) { Console.WriteLine(res); } } }
Đầu ra
Here are the university rank of MCA Students College ABC: 10 19 26