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
I'd like to propose an optimization for the Decode method. I'll be decoding a single ID most of the time, so it might make sense to add add the following methods:
//decode a single int ID from a hashintDecodeSingle(stringhash);//decode a single long ID from a hashlongDecodeSingleLong(stringhash);
This approach would not require allocating an array for returning single values.