Portable Class Library does not support System.IO, Why?
问题 I created a portable class library to be used in my Monodroid project . But the problem is that I need System.IO library but unfortunately I couldn't add it. I even tried to add it by Add Reference option but it was in vain. Why this happened ? How shall I do this ? 回答1: You can't use System.IO because it isn't a portable class library. System.IO makes calls which are specific to the OS it runs on (Windows), while the portable class library is ment to be cross-platform. The solution to what