a. Visit the [docs][1].
b. Read the first line of the page, which tells you more about the error you get.
c. Visit the [linked][2] Microsoft site.
d. Dive into the [System.IO][3] namespace.
e. Drill down into the [File][4] class.
f. Observe that `ReadAllLines` doesn't exist on the WP8 version of .Net.
g. Re-write this part of your code to work on WP8 using the classes and functions it has available.
h. Repeat.
[1]: http://docs.unity3d.com/Manual/wp8-faq.html
[2]: http://msdn.microsoft.com/library/windows/apps/jj207211(v=vs.105).aspx
[3]: http://msdn.microsoft.com/en-US/library/windows/apps/system.io(v=vs.105).aspx
[4]: http://msdn.microsoft.com/en-US/library/windows/apps/system.io(v=vs.105).aspx
↧