How to find an assembly name for a .NET namespace, for example, Microsoft.WindowsAzure.ServiceRuntime

爱⌒轻易说出口 提交于 2019-12-01 18:40:27

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.

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

RoleEnvironment

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!