.net dynamic动态加属性

  1. class Test : System.Dynamic.DynamicObject
  2. {
  3. public override bool TryGetMember(System.Dynamic.GetMemberBinder binder, out object result)
  4. {
  5. if (map != null)
  6. {
  7. string name = binder.Name;
  8. object value;
  9. if (map.TryGetValue(name, out value))
  10. {
  11. result = value;
  12. return true;
  13. }
  14. }
  15. return base.TryGetMember(binder, out result);
  16. }
  17. System.Collections.Generic.Dictionary<string, object> map;
  18. public override bool TryInvokeMember(System.Dynamic.InvokeMemberBinder binder, object[] args, out object result)
  19. {
  20. if (binder.Name == "set" && binder.CallInfo.ArgumentCount == 2)
  21. {
  22. string name = args[0] as string;
  23. if (name == null)
  24. {
  25. //throw new ArgumentException("name");
  26. result = null;
  27. return false;
  28. }
  29. if (map == null)
  30. {
  31. map = new System.Collections.Generic.Dictionary<string, object>();
  32. }
  33. object value = args[1];
  34. map.Add(name, value);
  35. result = value;
  36. return true;
  37. }
  38. return base.TryInvokeMember(binder, args, out result);
  39. }
  40. }
  41. static void Main(string[] args)
  42. {
  43. dynamic t = new Test();
  44. string @a = "gg";
  45. t.set(@a,"galrj");
  46. Console.WriteLine(t.gg);
  47. }

http://blog.csdn.net/cqims21/article/details/17613733

https://q.cnblogs.com/q/15970/

上一篇:jquery之属性操作


下一篇:【问题】解决在微信公众号里面网站无法访问:oops something went wrong:(