I have a generic question, and specific example. This should be easy according to all the similar questions on SO regarding assemblies for namespaces. The most common answer is found in this question

How do I know what reference to include to import a specific .NET namespace?

"All MSDN doc pages mention namespace and assembly."

However on thisMSDN page there is no mention of the assembly. What obvious thing am I missing?

Microsoft.WindowsAzure.ServiceRuntime Namespace

Revised:

More specifically I'm looking for the dll to include for the Azure class RoleEnvironment. When I Hit F1 and look on it's MSDN page MSDN RoleEnvironment, it mentions the Microsoft.WindowsAzure.ServiceRuntime Namespace, but no assembly to include. I've run into things like this before, so I thought I would make it a generic question. Although I do want to know the specific dll to reference, I ALSO want to know the answer so I know what to do next time I face this situation.

link|improve this question

1  
When I load the RoleEnvironment page, right under the line giving the type's namespace, it says "Assembly: Microsoft.WindowsAzure.ServiceRuntime (in microsoft.windowsazure.serviceruntime.dll)" – phoog Oct 9 '11 at 15:30
ahhh, somehow I was looking at the Members page, and not the Class page. There it is, right at the top. Thanks. – Brad Boyce Oct 9 '11 at 15:36
feedback

2 Answers

up vote 3 down vote accepted

Namespaces don't have assemblies. One namespace can be (and often is) in several assemblies. But specific types are in specific assemblies. So, if you look at the documentation for some type from the namespace you are interested in, you will see in what assembly that type is.

Other types from the same namespace are likely to be in the same assembly, but don't have to be.

link|improve this answer
Thanks for your response. Please see revised question. – Brad Boyce Oct 9 '11 at 15:27
A specific example: System.Collections.Generic.List<T> is found in mscorlib.dll, while System.Collections.Generic.SortedSet<T> is found in System.dll – phoog Oct 9 '11 at 15:33
feedback

Namespace: Microsoft.WindowsAzure.ServiceRuntime Assembly: Microsoft.WindowsAzure.ServiceRuntime (in microsoft.windowsazure.serviceruntime.dll)

RoleEnvironment

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.