1 Star 0 Fork 7

释冰翼/QcloudSharp

forked from JoyMoe/QcloudSharp
暂停
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ApiResult.cs 657 Bytes
一键复制 编辑 原始数据 按行查看 历史
kinosang 提交于 2016-10-27 12:18 . Auto format
using System;
using System.Collections.Generic;
using System.Dynamic;
namespace QcloudSharp
{
public class ApiResult : DynamicObject
{
private Dictionary<string, object> _attr = new Dictionary<string, object>();
public int Code { get; set; }
public string Message { get; set; }
public override bool TryGetMember(GetMemberBinder binder, out object result)
{
return _attr.TryGetValue(binder.Name, out result);
}
public override bool TrySetMember(SetMemberBinder binder, object value)
{
_attr[binder.Name] = value;
return true;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chenwenbin_admin/QcloudSharp.git
git@gitee.com:chenwenbin_admin/QcloudSharp.git
chenwenbin_admin
QcloudSharp
QcloudSharp
master

搜索帮助