在C#应用程序中获取NullReferenceException,无法查看取消引用为null的原因
本文关键字:引用 取消 null 应用程序 获取 NullReferenceException | 更新日期: 2023-09-27 18:05:19
我写了一些简单的代码,由于某些特定的原因,由于我不知道的原因,导致NullReferenceException不起作用。
以下是的简单应用程序
namespace App1
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class MainPage : Page
{
private string[] IPToCheck;
private List<string> IPRange;
private bool CorrectNetwork = false;
public MainPage()
{
this.InitializeComponent();
var hostnames = NetworkInformation.GetHostNames();
foreach (var hn in hostnames)
{
if (hn.IPInformation != null &&
(hn.IPInformation.NetworkAdapter.IanaInterfaceType == 71
|| hn.IPInformation.NetworkAdapter.IanaInterfaceType == 6))
{
IPToCheck = hn.DisplayName.Split(new char[] { '.' });
if (IPToCheck.Count() == 4)
{
Debug.WriteLine("Correct");
CorrectNetwork = true;
}
if (CorrectNetwork)
{
Debug.WriteLine("{0}.{1}.{2}.",IPToCheck);
GenerateIPs(IPToCheck);
break;
}
}
}
}
private void GenerateIPs(string[] IPToCheck)
{
for (int i = 0; i < 255; i++)
{
Debug.WriteLine(IPToCheck[0] + "." + IPToCheck[1] + "." + IPToCheck[2] + "." + i.ToString());
IPRange.Add(IPToCheck[0] + "." + IPToCheck[1] + "." + IPToCheck[2] + "." + i.ToString());
}
}
}
}
当运行此程序时,我得到以下输出:
Correct
192.168.10.
192.168.10.0
A first chance exception of type 'System.NullReferenceException' occurred in App1.Windows.exe
它强调:
IPRange.Add(IPToCheck[0] + "." + IPToCheck[1] + "." + IPToCheck[2] + "." + i.ToString());
第一个"ip"似乎是在GenerateIPs方法的for循环中生成的。
为什么会发生这种NullReferenceException?谢谢
您忘记添加:
this.IPRange = new List<string>();
在MainPage
构造函数中。