コード例 #1
0
ファイル: Program.cs プロジェクト: fossabot/SnowLeopard
        public static void HashGetAllTest(IRedisCache redisCache)
        {
            var resList = redisCache.HGetAll <string>("TestHashID");

            foreach (var item in resList)
            {
                Debug.WriteLine(item);
            }
        }