Application name

  • Thread starter Thread starter Peter Meier
  • Start date Start date
P

Peter Meier

Hi,

I want do put my configuration in the XXX.exe.config file.
Know somebody a way to get the applicationname at runtime.
ConfigurationSetting() is not avaible.
I need the Information in every Class that configured
itself. This class are in differend assemblys.

Thanks

Peter
 
Path.GetFileName(System.Reflection.Assembly.GetCallingAssembly().GetName().C
odeBase)
 
Back
Top