Get Version information of windows phone 7 application

Posted by Unknown
Get Version information of windows phone 7 application

In this post am going to explain you how get version information of windows phone 7 application

Here is very small code snippet which will get the version information 

Public string GetVersionInfo()
{
String Assemblyinfo=Assembly.GetExecutingAssembly().FullName;
string[] versionInfo =Assemblyinfo.split(',');
string versionName=versionInfo[1];

return versionName;

}
Labels: ,

Post a Comment

 
test