1.9 取中文日期显示——年月日时分 string stry=currenttime.tostring("f"); //不显示秒 1.10 取中文日期显示_年月 string strym=currenttime.tostring("y"); 1.11 取中文日期显示_月日 string strmd=currenttime.tostring("m"); 1.12 取当前年月日,格式为:2003-9-23 string strymd=currenttime.tostring("d"); 1.13 取当前时分,格式为:14:24 string strt=currenttime.tostring("t");