I am upgrading to 2.0 and have found that the TryParse() methods on RedisValue have been removed. I have used these do distinguish between double and string values. Is there an equivalent in 2.0 except from e.g. double.TryParse(redisValue.ToString(), out var numberValue)?
I am upgrading to 2.0 and have found that the
TryParse()methods onRedisValuehave been removed. I have used these do distinguish between double and string values. Is there an equivalent in 2.0 except from e.g.double.TryParse(redisValue.ToString(), out var numberValue)?