1. 首页
  2. 编程语言
  3. C#
  4. C#常用函数及方法集合(推荐C#初学者)

C#常用函数及方法集合(推荐C#初学者)

上传者: 2021-05-05 14:28:42上传 APPLICATION/X-RAR文件 3KB 热度 10次
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;
用户评论