Is System.IO.MemoryStream available on Panada II framework

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

It is inside System.IO.dll

Yes, apparently it is the case!
Adding System.IO.dll made all of the members of the namespace available.

I guess the documentation is somehow misleading

[quote]MemoryStream Class
This topic has not yet been rated - Rate this topic
Creates a stream whose backing store is memory.
Namespace: System.IO
Assembly: mscorlib (in mscorlib.dll)
[/quote]

Thank you for your help, Architect,
Alex

You are welcome.

Yeah, there are couple of instances where doc is not correct. This is one of them.