Enum doesn't have a Description() method. The best you could do is have your enum implement an interface that has the Description() method. If you do that, then you can have
public static BindingList> getBindingList()
and then inside of that you can refer to
T foo = ...?
foo.Description(...);