摘要:
分页类(需要从数据库库得到的只有两个数据,一个要展示的数据列表,还有就是总记录数) using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NewProductIm 阅读全文
摘要:
http://blog.csdn.net/leidengyan/article/details/5503594 <script> var str='1250' ; alert( Number(str) ); //得到1250 alert(parseInt(str)); //得到1250 var st 阅读全文
摘要:
out 关键字会导致参数通过引用来传递。这与 ref 关键字类似,不同之处在于 ref 要求变量必须在传递之前进行初始化。若要使用 out 参数,方法定义和调用方法都必须显式使用 out 关键字。例如:class OutExample{ static void Method(out int i) { 阅读全文