c# console application get current path code example
Example 1: get application path c#
System.Reflection.Assembly.GetExecutingAssembly().Location
Example 2: c# windows application get current path
System.IO.Path.GetDirectoryName(Application.ExecutablePath);