摘要: Source code https://github.com/dotnet/samples/tree/main/csharp/getting-started/console-webapiclient private static readonly HttpClient client = new Ht 阅读全文
posted @ 2021-04-16 16:10 FrancisForeverhappy 阅读(169) 评论(0) 推荐(0) 编辑
摘要: Example class ReadFromFile { static void Main() { // The files used in this example are created in the topic // How to: Write to a Text File. You can 阅读全文
posted @ 2021-04-16 01:46 FrancisForeverhappy 阅读(669) 评论(0) 推荐(0) 编辑
摘要: 内插表达式,格式字符串 // Example 1 // 可通过在内插表达式后接冒号(“:”)和格式字符串来指定受表达式结果类型支持的格式字符串 // {<interpolationExpression>:<formatString>} var date = new DateTime(1731, 11 阅读全文
posted @ 2021-04-15 00:41 FrancisForeverhappy 阅读(217) 评论(0) 推荐(0) 编辑
摘要: Mock Example: var paymentServiceMock = new Mock<IPaymentService>(); A Mock can be: Instructed, you can tell a mock that if a certain method is called 阅读全文
posted @ 2021-04-12 16:47 FrancisForeverhappy 阅读(100) 评论(0) 推荐(0) 编辑
摘要: virtual and abstract 在 virtual 方法,任何派生类都可以选择重新实现。 派生类使用 override 关键字定义新的实现。 通常将其称为“重写基类实现”。 virtual 关键字指定派生类可以重写此行为。 还可以声明 abstract 方法,让派生类必须在其中重写此行为。 阅读全文
posted @ 2021-04-11 00:21 FrancisForeverhappy 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 数组、集合和 LINQ 泛型集合: System.Collections.Generic 专用集合: System.Span(用于访问堆栈帧上的连续内存),以及 System.Memory(用于访问托管堆上的连续内存)。 所有集合(包括数组、Span 和 Memory)都遵循一种统一的迭代原则。 使 阅读全文
posted @ 2021-04-07 00:11 FrancisForeverhappy 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 技术文档的作用 当前的信息共享和长期的知识传承 好的技术文档 敏捷, 高度可维护的并且经常维护, 易理解 表述准确、结构清晰、排版美观、风格统一 背景?问题?目标?核心需求?主要功能? Terms 术语解释,很多业务会衍生一些特定词汇,需要单独解释。 每一个文件是做什么的,配置在哪里, 接口约定(对 阅读全文
posted @ 2021-04-02 01:37 FrancisForeverhappy 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 根据《《保险代理管理守则》》内部规定,保险代理人的委任确认: 保险代理登记委员会通知保险人确认保险代理人申请,保险人通知保险代理人确认委任 《《保险代理管理守则》》中英文抵触,由谁解决 香港保险业联会 在代位的补偿下,以下哪项具体考虑因素会出现?(答案都出现) 保险人从代位安排下取得的补偿,不可多余 阅读全文
posted @ 2021-03-28 01:53 FrancisForeverhappy 阅读(408) 评论(0) 推荐(0) 编辑
摘要: Member The following list provides an overview of the kinds of members a class can contain. Constants: Constant values associated with the class Field 阅读全文
posted @ 2021-03-26 17:57 FrancisForeverhappy 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 类声明 (class declarations) A class declaration starts with a header. The header specifies: 类的特性和修饰符 类的名称 基类(从基类继承时) 接口由该类实现。 类型参数 (Type parameters) 例子:P 阅读全文
posted @ 2021-03-21 01:32 FrancisForeverhappy 阅读(46) 评论(0) 推荐(0) 编辑