What is the namespace 'Standard'?

c#, namespaces, using-directives

Solution

There is a namespace in the PresentationFramework assembly called "Standard". All of its types are internal though, so you can't see any of the types. However, you can still use the namespace.

The namespace seems to have appeared in the 4.5 reference assembly, it doesn't appear in the 4.0 one.

Problem

When I try to write a new `using` clause, I notice that Intellisense has, in its list, a namespace called `Standard`. However, this seems to have no members on closer inspection. What is this namespace?

Original source