Google.VersionHandler.FileMetadata.CalculateVersion C# (CSharp) Method

CalculateVersion() public method

Get a numeric version number. Each component is multiplied by VERSION_COMPONENT_MULTIPLIER^(MAX_VERSION_COMPONENTS - (component_index + 1)) and accumulated in the returned value. If the version string contains more than MAX_VERSION_COMPONENTS the remaining components are ignored.
public CalculateVersion ( ) : long
return long
        public long CalculateVersion() {
            return CalculateVersion(versionString);
        }

Same methods

VersionHandler.FileMetadata::CalculateVersion ( string versionString ) : long