Exemplo n.º 1
0
        public static string Encode(string value)
        {
            Guid guid = new Guid(value);

            return(ShortGuid.Encode(guid));
        }
Exemplo n.º 2
0
 public ShortGuid(Guid guid)
 {
     this._value = ShortGuid.Encode(guid);
     this._guid  = guid;
 }