Quote:
|
quote:With .NET---nothing is included (except private assemblies, and none of these would be included with the standard .NET framework--they would have to be downloaded or sent to me).
|
Taking AnkurLib.dll again. If you refer to it with âCopy Localâ property True, it will be copied to app directory of your application, which will make it a private assembly.
If you install AnkurLib.dll in GAC and refer to it with âCopy Localâ False it will not get copied to the app directory of you application, but will be loaded from the GAC, that makes it a shared assembly.
In either case you will have to have it sent to you or download it.
Quote:
|
quote:Things are referenced "just in time"?
|
Things are âloadedâ just in time. References to assemblies get added to the
application at design time. But implementation of classes like âConsultancyâ get
loaded just in time.
Regards
Ankur