随笔分类 -  AspNetCore

摘要:## 问题描述 在使用Dapr的发布订阅组件时,遇到参数无法正确反序列化的问题,致使拿到的参数属性为默认值,入下图 ![](https://img2023.cnblogs.com/blog/950636/202306/950636-20230613105825207-348819540.png) ! 阅读全文
posted @ 2023-06-13 11:17 青玄鸟 阅读(80) 评论(0) 推荐(0)
摘要:接口隔离原则 不强迫接口的使用者依赖其不需要的接口 接口隔离原则的一般实现 public interface IFoo { void DoSomeOperation(); } public interface IBar { void DoAnotherOperation(); } public cl 阅读全文
posted @ 2020-07-21 23:27 青玄鸟 阅读(174) 评论(0) 推荐(0)