My attempts to declare a System.IO.MemoryStream object variable in a C# project result in compiler error:
In fact, Visual Studio intellisense offers only the following choices in the System.IO namespace:
IOException
Ports{}
SeakOrigin
Stream
This list is much shorter than in the .NET Micro Framework 4.1 reference.
I do have mscorlib referenced by the project. The following its properties as shown in VS:
Path: C:\Program Files\Microsoft .NET Micro Framework\v4.1\Assemblies\le\mscorlib.dll
Runtime Version: v4.0.30319
Version: 4.1.2821.0
Is there anything else I have to do to have MemoryStream and other members of System.IO available in the project?
Thanks,
Alex