摘要: using System.Collections.Concurrent; namespace ClassLibrary1; public class EventBus { private static readonly ConcurrentDictionary<EventType, Delegate 阅读全文
posted @ 2023-09-27 16:07 cchong005 阅读(87) 评论(0) 推荐(0)
摘要: 什么是母版页 官方示例的 MainLayout.razor 即为母版页;母版页必须继承 LayoutComponentBase,你可以通过继承 LayoutComponentBase 来写自己的母版页 @inherits LayoutComponentBase <div class="page"> 阅读全文
posted @ 2023-08-21 14:34 cchong005 阅读(141) 评论(0) 推荐(0)
摘要: public abstract class HunClientBase { protected ComunicationConfig _ComunicationConfig; protected HubConnection _HubConnection; private TaskCompletion 阅读全文
posted @ 2023-08-16 16:06 cchong005 阅读(31) 评论(0) 推荐(0)
摘要: using log4net; using log4net.Appender; using log4net.Config; using log4net.Repository; using System; using System.Collections.Generic; using System.Li 阅读全文
posted @ 2023-08-08 16:14 cchong005 阅读(102) 评论(0) 推荐(0)