Example #1
0
        public HashSet <string> Diff(IRedisSet[] withSets)
        {
            var withSetIds = withSets.ToList().ConvertAll(x => x.Id).ToArray();

            return(client.GetDifferencesFromSet(setId, withSetIds));
        }