日新阁

取日三省之意,记生活珠玑,每日清新,谓日新阁.

 

随笔分类 -  .Net开发

c# WebBrowser网页操作-元素获取_事件操作
摘要:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;//namespaceWebBrowser网页操作{publicclassElement{//根据Name获取元素publicHtmlElement GetElement_Name(WebBrowser wb,stringName){HtmlElement e = wb.Document.All[Name];returne;}//根据Id获取元素publicHtmlElement GetE 阅读全文

posted @ 2012-05-27 22:52 flashicp 阅读(4855) 评论(0) 推荐(0)

程序中的短路(值得注意的细节)
摘要:当我们进行连续的(&&)或(||)或联合运用这俩种逻辑时候就会出现短路问题 如下 Console.WriteLine(true||false||false);当执行到第一个true时候程序就不执行后面的了因为程序认为后面都没有意义了,或的情况只要有一个为真就都为真 在如下Console.WriteLine(true&&false&&false);当执行到第一个假的时候程序就不会在执行,而认为... 阅读全文

posted @ 2006-03-26 21:10 flashicp 阅读(468) 评论(1) 推荐(0)

导航