i have create a class
now i want the compiler to suggest foo_Status as the status when i type
if(foo.status ==
how do i do this..
Code:
public class foo { private int _status; public int status { get { return _status;} set {_status = value;} } } for which i have created an enum public enum foo_Status { Included = 1, Excluded = 2 }
if(foo.status ==
how do i do this..
Comment