Application.StartupPath : Application « System.Windows.Forms « C# / C Sharp by API
- C# / C Sharp by API
- System.Windows.Forms
- Application
Application.StartupPath
using System;
using System.Collections.Generic;
using System.Windows.Forms;
static class MainClass
{
[STAThread]
static void Main()
{
Console.WriteLine( Application.StartupPath);
}
}
Related examples in the same category