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
Not sure if this is the right place to post this but sqids-dotnet v2 has just been released which added support for all integral numeric types in .NET (e.g. int, long, etc.) — previously we only supported int.
This resulted in an API breaking change where the SqidsEncoder class now requires the user to specify a type argument upon instantiation; so, all three code snippets on the website need to be updated:
- var sqids = new SqidsEncoder(...+ var sqids = new SqidsEncoder<int>(...
The text was updated successfully, but these errors were encountered:
Not sure if this is the right place to post this but sqids-dotnet v2 has just been released which added support for all integral numeric types in .NET (e.g.
int
,long
, etc.) — previously we only supportedint
.This resulted in an API breaking change where the
SqidsEncoder
class now requires the user to specify a type argument upon instantiation; so, all three code snippets on the website need to be updated:The text was updated successfully, but these errors were encountered: