You can use reference of System.Windows.Forms.dll in your console application project to call Application.ExecutablePath.
Well there are many other ways to get the executable path, if you don't want to take reference then you can use
Assembly.GetExecutingAssembly().CodeBase;
// Include System.Reflection in your namespace.
Good Luck !!