I'm having a problem with reading simple text file containing my level information using Windows Phone 8 and MonoGame framework.
my file reading function works just fine with a normal Windows Phone 8 project but when I try to use it on monogame project it gives me this error when its trying to create new FileStream:
"An exception of type 'System.MethodAccessException' occurred in mscorlib.ni.dll but was not handled in user code"
this is my file reading function
private string readFile(string fileName)
{
FileStream fs = new FileStream(fileName, FileMode.Open);
byte[] bytes = new byte[fs.Length];
int numBytesToRead = (int)fs.Length;
int numBytesRead = 0;
while (numBytesToRead > 0)
{
int n = fs.Read(bytes, numBytesRead, numBytesToRead);
if (n == 0)
{
break;
}
numBytesToRead -= n;
numBytesRead += n;
}
numBytesToRead = bytes.Length;
return System.Text.UTF8Encoding.UTF8.GetString(bytes, 0, bytes.Length);
}
Is my approach complitely wrong or does anyone have ideas why this isnt working? I'm trying to read the file from my project files.