C# Class WixSharp.GuidGenerators

Collection of the deterministic GUID generation algorithms
ファイルを表示 Open project: Eun/WixSharp

Public Methods

Method Description
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.

Method Details

Default() public static method

Default GUID generation algorithm.
public static Default ( object seed ) : System.Guid
seed object The seed.
return System.Guid

Sequential() public static method

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.
return System.Guid