最近用Redis的c#驱动,发现ServiceStack.Redis里List类型的Insert方法调用的时候始终报错,结果反编译dll后,这个方法居然是这样写的:

public void Insert(int index, string item)
{
    throw new NotImplementedException();
}

唉。。。坑死人不偿命呀

相关文章:

  • 2022-12-23
  • 2022-01-25
  • 2022-01-10
  • 2022-01-29
  • 2021-05-26
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-07
  • 2021-12-28
  • 2022-12-23
相关资源
相似解决方案