关于属性的Get访问器
请问如何重写一个属性的get访问器
[code=C#]
/// <summary>
/// 登录结果,0为成功
/// </summary>
public int Status { get; set; }
public enum SystemStatus : int
{
正常 = 0,
开发者TOKEN验证不通过 = 1,
服务器系统内部错误 = 2,
用户登录验证不通过 = 3, // 未登录用户请求了需用户登录验证的API
API请求无对应数据返回 = 4, //例如根据barcode查询商品,但无对应的barcode记录,API无法返回对应商品数据
API参数类型错误 = 96,
API参数长度超长 = 97,
API参数格式错误 = 98, //如不符合格式
API参数不完整 = 99,
未知错误 = 100,
非SSL请求模式拒绝 = 200
}
[/code]
将Status 的返回值重写为枚举类型。
谢谢各位了
------解决方案--------------------
你改成
public SystemStatus Status { get; set; }
不见可以了吗
------解决方案--------------------