Location information using GetEntryAssembly
The following code is used to get the current location information of the
assembly.
Namespace part
using System;
using System.Reflection;
Code Part
public class MainClass
{
static void Main()
{
Assembly MyAssembly;
MyAssembly = Assembly.GetEntryAssembly();
Console.WriteLine(EntryAssembly.Location);
Console.WriteLine(EntryAssembly.EscapedCodeBase);
Console.WriteLine(EntryAssembly.GlobalAssemblyCache);
Console.WriteLine(EntryAssembly.CodeBase);
}
}
Code Explanation
1. Create the instance of the Assembly
2. using GetEntryAssembly fill the assembly details
3. Display location details
By
Nathan