public static string Encode(string value) { return(ShortGuid.Encode(new System.Guid(value))); }
public ShortGuid(string value) { this._value = value; this._guid = ShortGuid.Decode(value); }
public ShortGuid(System.Guid guid) { this._value = ShortGuid.Encode(guid); this._guid = guid; }
static ShortGuid() { ShortGuid.Empty = new ShortGuid(System.Guid.Empty); }