I would like to know how to pragmatically get the name of the running file not the assembly name but the name of the file in C# .NET,
I tried
System.Reflection.Assembly.GetEntryAssembly().GetName().Name
this gives the name of the assembly but i am looking for the name of the exe file instead.
Thank you!