I'm experiencing "null reference exception" when I'm attempting to return a value from a structure.
here is the code:
AssetItem item = new AssetItem();
item = initModified();
bool found = false;
int index = getIndex(barcode);
string modifiedFile = filepath + "Modified\\" + dir + "\\" + index + ".asdt";
if(File.Exists(modifiedFile))
{
using(StreamReader reader = new StreamReader(modifiedFile))
{
string line = reader.ReadLine();
while(line.Trim()!="")
{
string[] split = line.Split(',');
if(split[1]==barcode)
{
found = true;
break;
}
line = reader.ReadLine();
}
reader.Close();
}
}
if(found)
{
item.modified = true;
}
else
{
item.modified = false;
}
return item;
I initialize item by calling a sub containing that item.modified = false. After checking that the file exist, I used a streamreader to read the lines of the file one by one until it finds a specific line and stops. The problem is when it checked if the file exist and doesn't find the specific line. It returns null even tough I initialize item to false and set it to false when it doesn't find the line. Note: this occurs seldom and works fine when I access other files to read and even in the same file that it returns null.
Note: Another problem I encountered is that it skips a line that it reads.
What could be the cause of this?