C# Класс WixSharp.GuidGenerators

Collection of the deterministic GUID generation algorithms
Показать файл Открыть проект

Открытые методы

Метод Описание
Default ( object seed ) : System.Guid

Default GUID generation algorithm.

Sequential ( object seed ) : System.Guid

Returns sequentially incremented GUID. The specified seed is ignored. Every consecutive call to this method will increase the last returned GUID by 1 and return its value.

Описание методов

Default() публичный статический Метод

Default GUID generation algorithm.
public static Default ( object seed ) : System.Guid
seed object The seed.
Результат System.Guid

Sequential() публичный статический Метод

Returns sequentially incremented GUID. The specified seed is ignored. Every consecutive call to this method will increase the last returned GUID by 1 and return its value.
public static Sequential ( object seed ) : System.Guid
seed object The seed.
Результат System.Guid