1. 程式人生 > >C# 列舉轉集合

C# 列舉轉集合

列舉轉成對應的集合

  public enum TestType
    {
        Binary,   
        Text  
    }

  public List<TestType> ProtocalTypes {
            get { return Enum.GetValues(typeof(TestType)).Cast<TestType>().ToList(); }
        }