C# 字符串访问属性
摘要:
//1.公开字段的实现 public class Foo{ public float aa=100; public void test(){ this["aa"]=300; } public float this[string name]{ get{ return (float)GetType(). 阅读全文
posted @ 2019-11-15 11:11 kingBook 阅读(536) 评论(0) 推荐(0) 编辑