Google.VersionHandler.FileMetadata.CalculateVersion C# (CSharp) Méthode

CalculateVersion() public méthode

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
Résultat long
        public long CalculateVersion() {
            return CalculateVersion(versionString);
        }

Same methods

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