You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now it's pretty easy to miss passing in EncodingFormat.XYZ into Convert constructor, and get the wrong output.
An alternative could be:
could scrap the constructor and provide these as static methods
Convert.Base64Url()
Convert.Zbase32()
Convert.Base58Btc()
Convert.String()
Convert.ByteArray()
when in turn return a convert instance that you can call toWhatever() on
The text was updated successfully, but these errors were encountered:
Right now it's pretty easy to miss passing in
EncodingFormat.XYZ
into Convert constructor, and get the wrong output.An alternative could be:
The text was updated successfully, but these errors were encountered: