Click or drag to resize

GeneralVersion Method

Return the release version of the core CryptoSys PKI DLL as an integer value.

Namespace: CryptoSysPKI
Assembly: diCrSysPKINet (in diCrSysPKINet.dll) Version: 23.0.0.25611 (23.0.0.0)
Syntax
public static int Version()

Return Value

Int32
Version number in form Major * 10000 + Minor * 100 + Release. For example, version 3.10.1 would return 31001.
Example
C#
int n = CryptoSysPKI.General.Version();
Console.WriteLine("Version={0}", n);
See Also