예제 #1
0
 public static RedisInt.Nullable Object(RedisObjectSubCommand subCommand, params string[] arguments)
 {
     object[] args = RedisArgs.Concat(subCommand.ToString().ToUpperInvariant(), arguments);
     return(new RedisInt.Nullable("OBJECT", args));
 }
예제 #2
0
 public static RedisIntNull Object(RedisObjectSubCommand subCommand, params string[] arguments)
 {
     object[] args = RedisArgs.Concat(subCommand.ToString(), arguments);
     return(new RedisIntNull("OBJECT", args));
 }