I am trying to split my current applications version number, but is removes the leading zeros.
How do i change my split to not remove the leading zeros.
Getting the currentVersionNo:
startUpAssembly.GetName().Version.ToString()
So for testing:
string versionNo = "7.01.7000.0";
string[] versionInfo = versionNo.Split('.');
This produces:
7
1 //Here i need it to be 01
7000
0
And i need it to NOT remove the leading zero. How do i achieve this?
Maybe there is a better solution using regex?