I have an enum class like
public enum USERTYPE { Permanant=1, Temporary=2, }
in my business object, I simply declare this listing as
private List<USERTYPE> userType=new List<USERTYPE>;
and in the get / set method I tried as
public List<USERTYPE> UserType { get { return userType; } set { userType= value; } }
here it returns no lines as 0, how can I get all the values ββin Enum here, can anyone help me here ...
source share