09 2008 档案
摘要:private void 撤消UToolStripMenuItem_Click(object sender, EventArgs e) { //文本的撤消 this.richTextBox1.Undo(); } private void 剪切TToolStripMenuItem_Click(obje...
阅读全文
摘要:using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.OleDb; namespace ConsoleApplication1 { class Program { public const string Conne...
阅读全文
摘要:1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 ...
阅读全文