摘要:
今天用360按提示给win7打了下补丁,真的很伤:提示重启后安装补丁,再次进行系统时Windows Update开始配置,但是到32%时就卡哪不动了 按电源关机后,使用360提供的启动项进入时,仍旧卡在32%不动。吃饭时间打个补丁,上班时却进不去系统,真是伤啊 下面说说我解决办法: 开机先按Enter(thinkpad的interrupt normal 的键,本子不同,按键可能也会不同),然... 阅读全文
摘要:
String.Compare 方法 (String, Int32, String, Int32, Int32) 对两个指定的 String 对象的子字符串进行比较,并返回一个指示二者在排序顺序中的相对位置的整数。 参数 strA类型:System.String 要在比较中使用的第一个字符串。indexA类型:System.Int32 strA 中子字符串的位... 阅读全文
摘要:
SVN:https://svn.lumisoft.ee:8443/svn/LumiSoft_Net/User: readonlyPassword: readonlyDownload:http://www.lumisoft.ee/lsWWW/download/downloads/NetClass reference:http://www.lumisoft.ee/lsWWW/download/... 阅读全文
摘要:
错误:Implicit super constructor xx() is undefined for default constructor. Must define an explicit constructor 因为你的父类已经定义了一个有参的构造器,此时编译器不会为你调用默认的构造器,当子类继承时,必须在自己的构造函数显示调用父类的构造器,自己才能确保子类在初始化前父类会被实例化,... 阅读全文
摘要:
LoadXml:从指定的字符串加载 XML 文档。eg:doc.LoadXml("aa"); public void LoadXmlTest() { // Create the XmlDocument. XmlDocument doc = new XmlDocument(); doc.LoadXml("wrench")... 阅读全文