摘要:
Imports SystemImports System.DataImports System.Data.SqlClient public class MainClass Shared Sub Main() Dim thisConnection As New SqlConnection("server=(local)\SQLEXPRESS;" & _ "integr... 阅读全文
摘要:
1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日 int 日=curre... 阅读全文
摘要:
1.C#中所有类的基类是什么? 2.计算n+(n-1)+(n-2)+…+1(n=100)。3.请阅读以下代码,并求出结果。 int iResult = 0; int iTemp = 0; for (int i = 0; i > 100; i += 2) { iResult += ... 阅读全文