摘要: public enum WrongType { /// /// 系统错误,发送方可以重试 /// server, /// /// 用户数据错误 /// client } public static WrongType GetWrongType(string str) { WrongType returnValue; returnValue = (WrongType)Enum.Parse(typeof(WrongType), str, true); return returnValue; }2. // 摘要: // 指定常数来指示要显示的帮助文件元素。 public enum Help... 阅读全文
posted @ 2009-11-30 10:16 Roader 阅读(181) 评论(0) 推荐(0) 编辑