23 August 2012

Read Assemble information of Project

Here, I write a code for getting Assemble information of Project.
Get Company Name:
    string str = "This Company Name is" + " " + Application.CompanyName;
    MessageBox.Show(str);
Get Current Input Language:
    string CurrentInputlan = "Current Input Language is " + "  " +     Application.CurrentInputLanguage.Culture.EnglishName;
   MessageBox.Show(CurrentInputlan);
Get Product Name:
    string prtName = "Product Name is " + "  " + Application.ProductName;
    MessageBox.Show(prtName);
Get Product Version :
    string prtVersion = "Product Version is " + "  " + Application.ProductVersion;
    MessageBox.Show(prtVersion);

No comments: