Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the namespace 'Standard'?

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?

like image 551
It'sNotALie. Avatar asked Feb 22 '13 15:02

It'sNotALie.


1 Answers

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.

enter image description here

like image 192
vcsjones Avatar answered Nov 20 '22 20:11

vcsjones