C#\'s exception class has a source property which is set to the name of the assembly by default. Is there another way to get this exact string (without parsing a differe
I use the Assembly to set the form's title as such:
private String BuildFormTitle() { String AppName = System.Reflection.Assembly.GetEntryAssembly().GetName().Name; String FormTitle = String.Format("{0} {1} ({2})", AppName, Application.ProductName, Application.ProductVersion); return FormTitle; }