我有一个小问题,VS给了我2个关于两个值(int []和string [])的警告,因为它们从未被分配,但我确定我分配了它们,这是相关的代码部分我的问题:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using ComponentFactory.Krypton.Toolkit;
using System.IO;
namespace DA_Story_Editor
{
public partial class Form1 : ComponentFactory.Krypton.Toolkit.KryptonForm
{
public Form1()
{
InitializeComponent();
}
int[] pntrs;
string[] Strs;
private void ReadFile(string path1)
{
FileStream stream = new FileStream(path1, FileMode.Open, FileAccess.Read);
for (int i = 0; i < Pntrnum; i++)
{
stream.Position = Pntrstrt;
stream.Read(data, 0, data.Length);
pntrs[i] = BitConverter.ToInt32(data, 0);
}
for (int i = 0; i < Pntrnum; i++)
{
byte[] sttrings = new byte[pntrs[i + 1] - pntrs[i]];
stream.Position = pntrs[i];
stream.Read(sttrings, 0, sttrings.Length);
Strs[i] = Encoding.GetEncoding("SHIFT-JIS").GetString(sttrings);
ListViewItem item = new ListViewItem(new string[]
{
pntrs[i].ToString("X"),
Strs[i],
Strs[i],
});
listView1.Items.AddRange(new ListViewItem[] {item});
}
}
}
}
我不知道为什么它确实给了我这些警告,顺便说一句,它还给了我一个“NullReferenceException”就行了:pntrs[i] = BitConverter.ToInt32(data, 0);