C#webBrowser null异常错误

时间:2012-10-31 13:29:42

标签: c# nullreferenceexception

这有什么问题:

webBrowser1.Url = new System.Uri("http://www.google.com");
MessageBox.Show(webBrowser1.Url.ToString());

当消息框尝试运行时,它会抱怨出现空异常。

我想我可能已经找到了我的问题的解决方案,似乎我试图在它被初始化之前读取该值,一旦我检查了它完美的工作。 Noob错误。 :o(

1 个答案:

答案 0 :(得分:2)

您是否初始化了webBrowser1?

var webBrowser1 = new WebBrowser();
webBrowser1.Url = new System.Uri("http://www.google.com");
MessageBox.Show(webBrowser1.Url.ToString());