摘要:
usingSystem; usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingMicrosoft.CSharp;usingSystem.CodeDom.Compiler;usingSystem.Reflecti... 阅读全文
摘要:
在MySQL存储过程的语句中有三个标准的循环方式:WHILE循环,LOOP循环以及REPEAT循环。还有一种非标准的循环方式:GOTO,不过这种循环方式最好别用,很容易引起程序的混乱,在这里就不错具体介绍了。 这几个循环语句的格式如下:WHILE……DO……ENDWHILEREPEAT……UNTIL... 阅读全文
摘要:
usingSystem;usingSystem.Reflection;usingSystem.Globalization;usingMicrosoft.CSharp;usingSystem.CodeDom;usingSystem.CodeDom.Compiler;usingSystem.Text;n... 阅读全文
摘要:
C#利用反射,遍历获得一个类的所有属性名,方法名,成员名 mogo41572013-05-1812:49Typet=typeof(System.Drawing.Color);//获取所有方法System.Reflection.MethodInfo[]methods=t.GetMethods();//... 阅读全文