C# Frequently Asked Questions

The C# team posts answers to common questions

Why did I receive the error: "The type or namespace '<namespace name>' does not exist in the class or namespace '<parent namespace>' (are you missing an assembly reference?)"

You need to add a reference in your project to an assembly where that namespace is defined.

If you are using VS.NET:

1.  Right click on the References folder on your project.
2.  Select Add Reference.
3.  Select the .NET tab (or select the Browse button if it is not a .NET Framework assembly).
4.  Double-click the assembly containing the namespace in the error message.
5.  Press the OK button.

If you are using the command line, use the /r: or /reference: option.  For Example:

csc.exe /reference:System.Drawing.dll MyFontDisplayApp.cs

When you recompile, this error will no longer appear.

You can find the assembly, where a namespace is defined, in the documentation.  Identify one of the types in the namespace that you want to use.  Every type in the .NET Framework has an "About" page that provides an overview, basic information about the type, and example code if you're lucky.  At the bottom of the Overview, for all types, there is a "Requirements" section.  This has a Namespace member that tells what namespace the type belongs to.  It also tells what assembly type belongs to, which is the assembly you need to reference in your application.  For example, if I had an application that was using Font types, I would look up Font in the .NET Framework documentation, using the Index tab, and observe that the Font type is in the System.Drawing namespace and its assembly is System.Drawing.dll.

Another question related to this is "If I've already declared a using statement, why do I have to add the reference to the project?"

The reason derives from the fact that the using statement and assembly references have two different purposes.  Recall that the purpose of namespaces is to disambiguate type references and provide logical organization of types.  When specifying a namespace in a using statement, you are telling C# that you want to use the types in that namespace in an unqualified manner.  The key point is that namespaces are "logical" entities that could exist in one or more assemblies.  On the other hand, assemblies are "physical" entities that contain multiple types.  Assemblies are many things, but for the purposes of this discussion, an assembly is the unit of deployment in .NET.  So, the reason you need a reference to the assembly that the type is located in is so that C# can find the physical location of that type, which is not possible with the logical namespace provided by a using statement.

[Author: Joe Mayo]

Published Thursday, April 29, 2004 9:09 AM by CSharpFAQ

Comments

 

rick said:

excellent - short and to the point. thanks
May 6, 2004 7:58 AM
 

Code/Tea/Etc... said:

May 6, 2004 12:47 PM
 

Code/Tea/Etc... said:

May 6, 2004 1:12 PM
 

Luisfer said:

I'm tring to use this method (StrToInt), but when i try, this error apears "The type or namespace does not exist in the class or namespace", what should i do?
May 10, 2004 7:50 AM
 

Luisfer said:

I'm tring to use this method (StrToInt), but when i try, this error apears "The type or namespace does not exist in the class or namespace", what should i do?
May 10, 2004 7:51 AM
 

mrv said:

thanks....helped me.
May 19, 2004 3:27 AM
 

John Murdoch said:

I'm using assembly references for shared code in a large project (100+ assemblies). We routinely get this same error--despite having references to the specified assembly--when (it seems) different "major" assemblies have been compiled with references to different versions of the same utility assembly. The signatures of the utility assemblies has not changed.

This is HUGELY frustrating--and has a large development team grumbling.
June 16, 2004 12:35 PM
 

Dave said:

Thanks so much!!! I searched several places, including VS help, and do you think anybody would tell me to right click on reference??

Not until I found this site. Thank you !!!!
July 20, 2004 5:22 PM
 

dianying xia zai said:

July 26, 2004 12:40 AM
 

gool said:

Believe you, support you, I believe that you are right! ! ! I will make great efforts to look like your study! ! !
August 2, 2004 12:43 AM
 

RebelGeekz said:

December 28, 2004 4:54 AM
Anonymous comments are disabled

© 2008 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Microsoft
Page view tracker