On MSDN I can read what it does, but I would like to know what it does technically (tells compiler where to look for types..)? I mean using as a directive.
|
feedback
|
|
The primary function of the Take for example the following definition in MyTypes.Dll
Now consider referencing
The
| |||||||
feedback
|
|
@JaredPar's answer is correct, however I'd like to add that it doesn't quite work the same way as say You need to include either a DLL or project reference in order to even be able to use | |||
|
feedback
|
|
| |||
|
feedback
|
|
using just tell the compiler to go to the assembly's configuration file and search for a specific DLL with the name given, if the DLL is found then it links that dll into the current project. using is just a link operation to have DLL talk to each other in a shared space in memory. The guy below here is right | |||
|
feedback
|