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?
What is the namespace 'Standard'?
Asked Answered
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.
@BoltClock wait till you see the wallpaper. –
Cathexis
© 2022 - 2024 — McMap. All rights reserved.
using Standard;
doesn't cause any errors in a WPF application – Saratov