我有一個靜態類中的靜態變量列表。從靜態類中選擇一個隨機靜態變量
namespace Test
{
public static class Numbers
{
public static readonly int One = 1;
public static readonly int Five = 5;
public static readonly int Ten = 10;
public static readonly int Eleven = 11;
public static readonly int Fifteen= 15;
}
}
而我想隨機選擇一個類中的變量。我怎樣才能做到這一點?
int randomVariable = SomeFunction(Numbers);
爲什麼不使用枚舉? – makc
@makc:「Numbers」類來自第三方dll –
@RameshDurai這並不妨礙您將所有靜態變量複製到您自己的數組中。 – Rotem