How to determine which assembly contains a namespace?

The MSDN documentation does not usually indicate the assembly in which the namespace is located, so there is no easy way to add the necessary reference to the assembly.

NOTE. I use MonoDevelop, so right click, permission is not an option.

+2
source share
1 answer

Take a look at this example: http://msdn.microsoft.com/en-us/library/dd321424(VS.100).aspx

Task (from TResult) Class

Represents an asynchronous operation that can return a value.

Namespace: System.Threading.Tasks

Build: mscorlib (in mscorlib.dll)

, , .

+7

Source: https://habr.com/ru/post/1790965/


All Articles