闲来无事,看了下反射的实现,写了个小例子. 新建一个类: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WfmReflection { class MyClass { public string m; public void test() { } public int MyProperty { get; set; } } } 建一个类库 using S
//array.forEach(function(currentValue,index,arr),thisValue); //currentValue,必需,当前元素//index 可选,当前元素的索引值//arr 可选,当前元素所属的数组对象//thisValue 可选,传递给函数的值一般用this值,如果参数为空,undefined会传递给this var num = [1,3,5,7]; var sum = 0; function myFunction(item,index){ sum+=