C# 클래스 WixSharp.GuidGenerators

Collection of the deterministic GUID generation algorithms
파일 보기 프로젝트 열기: Eun/WixSharp

공개 메소드들

메소드 설명
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