if i use some code like this in my big project:
FileInfo myfile = new FileInfo("myfile.txt");
print("length:"+myfile.Length);
then i get the following in the player:
Assets/augmentedEDU/scripts/processes/process_updateModule.cs(288,47): error CS1061: Type `System.IO.FileInfo' does not contain a definition for `Length' and no extension method `Length' of type `System.IO.FileInfo' could be found (are you missing a using directive or an assembly reference?)
The interesting thing is, if i create a new project and do the same code it works.
can somebody point me to the right direction please?