DLL Location

  • Thread starter Thread starter Sidney Mark Croy
  • Start date Start date
S

Sidney Mark Croy

Greetings

Dim MyApp As System.Reflection.Assembly
MyApp = System.Reflection.Assembly.GetExecutingAssembly

Dim MyAppLocation As String

MyAppLocation = MyApp.Location



Will the MyAppLocation reflect the location of a DLL in the GAC? or
whereever it is loaded on disk, or does it reflect the location of the
calling application?

Thank you
 
Will the MyAppLocation reflect the location of a DLL in the GAC? or
whereever it is loaded on disk, or does it reflect the location of the
calling application?

Yes, yes, no



Mattias
 
Back
Top