visual studio - Why are the using directives inside of the namespace in Silverlight 4/VS 2010? -


What is the statement using the namespace inside the Silverlight 4 / VS 2010 Auto-Generated Code?

The new connection seems

  using the namespace myNamespace {system.Windows.Controls; Using System.Windows.Navigation; . . . Standard myClass () {}}  

instead of standard:

  using System.Windows.Controls; Using System.Windows.Navigation; Namespace myNamespace {. . . Public myClass () {}}  

Is there any advantage for this or is there an advantage for this, or how is it just done?

itemprop = "text">

Most stylistic preference is of little benefit if you use multiple root namespaces in the same file , The user names are scotched on the namespace.

Meaning

  Nameshon Fu {Blah; } Namespace bar {/ * No blah references are here  

Comments