随笔分类 - C# 基础
C# 基础
摘要:日期处理函数 //2007年4月24日 this.TextBox6.Text = System.DateTime.Now.ToString("D"); //2007-4-24 this.TextBox7.Text = System.DateTime.Now.ToString("d"); //2007
阅读全文
摘要:// 定义枚举类型enum sotype : int { book=1, pen=2, other=3 } // 输出名称 switch (Enum.GetName(typeof(sotype), 1)) { case "book": string strbook = "book"; //此时这个将被执行 ...
阅读全文
摘要:#region 备份数据文件 /// /// 备份数据文件 /// /// 备份文件目录 /// 发送还是接收 /// 消息类型 public void BackUpMessageInfo(String strFileName,String strTypeKufen,Strin...
阅读全文
摘要:#region 定时删除目录文件 /// /// 定时删除目录文件 /// northeasttycoon /// /// 根据参数删除定义为int类型变量为宜 public void DeleteRecFiles(string strParaTime) { ...
阅读全文
摘要://内部类public static class EnumHelper { public static string GetDescription(Enum value) { if (value == null) { ...
阅读全文