摘要:
CSharp Language Specification一、基础1.规范:除常量外,所有变量用驼峰命名方式,其它用帕斯卡命名方式.2.编译:首先由csc.exe将cs文件编译成MSIL.当双击exe的时候,会由clr的jit(just in time)编译器再次编译成cpu指令.csc位置(如):... 阅读全文
摘要:
存储过程分页: 1 create proc PR_PagerDataByTop 2 @pageIndex int, 3 @pageSize int, 4 @count int out 5 as 6 select top(@pageSize) * from dbo.userInfo where ID ... 阅读全文