I want to get the path of my app like: \"\\\\ProgramFiles\\\\myApp\", I try to use the following code:
string path = System.Reflection.Assembly.GetExecuting
What about using a FileInfo object to extract the directory name?
In Vb.Net:
fi = New FileInfo(System.Reflection.Assembly.GetExecutingAssembly.Location) path = fi.DirectoryName