def __getattr__(self,name):
obj = None
wrapped = System.Collections.Generic.IDictionary[System.String, System.Object](self)
ret = wrapped.TryGetValue(name, obj)
if ret[0]:
return ret[1]
else:
raise AttributeError, "%s has no attribute '%s'" % ("DotNetExpandoObject", name)
评论列表
文章目录