Class GuidExtension
Defines extension methods for the Guid class
Inheritance
System.Object
GuidExtension
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TimeCockpit.Data
Assembly: TimeCockpit.Data.dll
Syntax
public static class GuidExtension
Methods
ToBase64String(Guid)
Converts a guid into a 22 character long base64 encoded string
Declaration
public static string ToBase64String(this Guid value)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | value | Guid that should be converted |
Returns
Type | Description |
---|---|
System.String | Base64 encoded string representation of the guid. |
Remarks
Note that "/" has been replaced by "-", "+" has been replaced by "_" and "=" characters have been removed.