12 2014 档案

摘要:/// /// 中缀表达式到逆波兰表达式的转换及求值 /// public class RpnExpression { #region 定义属性 int Top = -1; ... 阅读全文
posted @ 2014-12-22 22:04 sulin 阅读(3862) 评论(1) 推荐(0)
摘要:1,找到安装mysql的位置 输入cmd:进入mysql bin安装目录 如:D:\Program Files\MySQL\MySQL Server 5.5\bin>mysqld --skip-grant-tables 执行如上命令:这个cmd窗口就暂时不动2.重新打开一个新的命令窗体 输入cmd进... 阅读全文
posted @ 2014-12-13 22:58 sulin 阅读(169) 评论(0) 推荐(0)
摘要:1.示例代码 public class SysLogBLL : BLLBase where T : new() { #region 比较方法 /// /// 复制对象到指定对象中 只复制名称一样的 /// /... 阅读全文
posted @ 2014-12-08 15:26 sulin 阅读(255) 评论(0) 推荐(0)
摘要:1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace MySystemManager.Utility 7 { 8 ... 阅读全文
posted @ 2014-12-02 21:11 sulin 阅读(229) 评论(0) 推荐(0)