next

Results 2 issues of next

```c# /// /// 验证回调接口签名 /// /// 表单的字典值 /// public ResultMo CheckCallBackSign(IDictionary formDics) { if (!formDics.ContainsKey("sign")) { return new ResultMo(ResultTypes.ParaError,"未发现sign参数"); } var sign = formDics["sign"]; //var signType = formDics["sign_type"]; formDics.Remove("sign"); formDics.Remove("sign_type");...

Entropy/samples/MusicStore.Spa/Infrastructure/PagedList.cs 分页功能 如何升级为.net core 3.1? PagedList.cs How to upgrade to .net core 3.1?