get name of application
Published: 9. October 2011 | Updated: 9. October 2011License: Microsoft Public License (MS-PL)
Categories: Framework » Reflection
Tags: C# Console Reflection Winforms WPF
Import namespace
using System.Reflection;
Code
string applicationName = Assembly.GetExecutingAssembly().GetName().Name;
| Send us feedback about this snippet » |





