Hi All,
I don;t know if this is possible; but i would like to ask if the following Enumeration is possible using c#;
public class enum MyEnum {
SUCCESSFUL_REQUEST((short) 000, "Successful request");
}
or something similar where SUCCESSFUL_REQUEST is the text with which one can view the enum, 000 is the code and the rest is the text one wishes for in the log or to be viewed by the gui!?
thanks
Nick
I don;t know if this is possible; but i would like to ask if the following Enumeration is possible using c#;
public class enum MyEnum {
SUCCESSFUL_REQUEST((short) 000, "Successful request");
}
or something similar where SUCCESSFUL_REQUEST is the text with which one can view the enum, 000 is the code and the rest is the text one wishes for in the log or to be viewed by the gui!?
thanks
Nick