Decode() public method

public Decode ( string input, Versions versions ) : Decoded
input string
versions Versions
return Decoded
コード例 #1
0
        public static DecodedSeed DecodeSeed(string seed)
        {
            var decoded = B58.Decode(seed, AnySeed);

            return(new DecodedSeed(decoded.Type, decoded.Payload));
        }