摘要:
下面列出了27个C#中常用的函数以及每个函数的用法: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日=currentTime.Day;1.5 取当前时int时=currentTime.Hour;1.6 取当前分int分=currentTime.Minute;1.7 取当前秒int秒= 阅读全文