I need to get the Assembly Version from the Code-Behind. Here i have given the code like "SystemCoreAssembly . Assembly . Tostring" . But it gives the Whole details of the Assembly. I want only the Version.
Is there any idea please suggest me.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Bhuvanesh MohankumarPosted May 11, 2016, 1:45 AM
Have you tried "Reflection",
System.Reflection.Assembly assembly = System.Reflection.Assembly.GetExecutingAssembly();
Ganeshkumar LingappanPosted May 11, 2016, 2:37 AM