C# 클래스 formulate.app.Helpers.GuidHelper

Helps with GUID operations.
파일 보기 프로젝트 열기: rhythmagency/formulate

공개 메소드들

메소드 설명
GetGuid ( string value ) : System.Guid

Converts a string GUID to a GUID instance.

This only parses GUIDs in the expected format.

GetString ( System.Guid guid ) : string

Converts a GUID to a string.

This ensures all GUIDs are in the expected format.

GetStrings ( IEnumerable guids ) : string[]

Converts a GUID collection to an array of strings.

This ensures all GUIDs are in the expected format.

메소드 상세

GetGuid() 공개 정적인 메소드

Converts a string GUID to a GUID instance.
This only parses GUIDs in the expected format.
public static GetGuid ( string value ) : System.Guid
value string The string GUID.
리턴 System.Guid

GetString() 공개 정적인 메소드

Converts a GUID to a string.
This ensures all GUIDs are in the expected format.
public static GetString ( System.Guid guid ) : string
guid System.Guid /// The GUID. ///
리턴 string

GetStrings() 공개 정적인 메소드

Converts a GUID collection to an array of strings.
This ensures all GUIDs are in the expected format.
public static GetStrings ( IEnumerable guids ) : string[]
guids IEnumerable /// The GUID collection. ///
리턴 string[]