
Windows
StrongWind
这个作者很懒,什么都没留下…
展开
-
VC版本号与VS对应关系
VC-VS对应版本vc6 - VC6.0vc7 - VS2002 vc7.1 - VS2003 vc8 - VS2005 vc9 - VS2008vc10 - VS2010vc11 - VS2012vc12 - VS2013vc13 - VS2014vc14 - V原创 2016-05-05 18:54:54 · 20668 阅读 · 0 评论 -
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 ...原创 2019-01-25 18:03:50 · 3770 阅读 · 0 评论