上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 107 下一页
摘要: <!doctype html> <html> <head> <meta charset="utf-8"> <title>SVG Line Between Divs (multi-point)</title> <style> html, body { margin: 0; padding: 0; } 阅读全文
posted @ 2022-11-17 22:53 ®Geovin Du Dream Park™ 阅读(23) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 外观模式 Facade Pattern /// 银行 /// </summary> public class Bank { public bool IsUntrustworthy(Customer customer, decimal loanAmount) { C 阅读全文
posted @ 2022-11-16 21:15 ®Geovin Du Dream Park™ 阅读(13) 评论(0) 推荐(0) 编辑
摘要: /// <summary> ///装饰模式 Decorator Pattern 亦称: 装饰者模式、装饰器模式、Wrapper、Decorator /// </summary> public interface IDataSource { /// <summary> /// /// </summar 阅读全文
posted @ 2022-11-15 23:07 ®Geovin Du Dream Park™ 阅读(14) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-sca 阅读全文
posted @ 2022-11-15 16:46 ®Geovin Du Dream Park™ 阅读(39) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 组合模式 Composite Pattern 亦称: 对象树、Object Tree、Composite Pattern /// </summary> public abstract class Gift { /// <summary> /// /// </sum 阅读全文
posted @ 2022-11-14 23:17 ®Geovin Du Dream Park™ 阅读(17) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 桥接模式 Bridge Pattern- Structural Pattern /// </summary> public abstract class Document { /// <summary> /// /// </summary> protected r 阅读全文
posted @ 2022-11-13 20:45 ®Geovin Du Dream Park™ 阅读(19) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 适配器模式 亦称: 封装器模式、Wrapper、Adapter Adapter Pattern /// </summary> public class Employee { /// <summary> /// /// </summary> public int I 阅读全文
posted @ 2022-11-12 23:58 ®Geovin Du Dream Park™ 阅读(19) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 原型模式 Prototype Pattern /// </summary> public interface IColorPrototype { /// <summary> /// /// </summary> /// <returns></returns> IC 阅读全文
posted @ 2022-11-09 23:25 ®Geovin Du Dream Park™ 阅读(18) 评论(0) 推荐(0) 编辑
摘要: /// <summary> ///单例模式 单件模式、Singleton Pattern /// </summary> public abstract class BaseGreeter { public virtual void Greet() => Console.WriteLine($"Gre 阅读全文
posted @ 2022-11-09 23:11 ®Geovin Du Dream Park™ 阅读(17) 评论(0) 推荐(0) 编辑
摘要: #region Record Types Record Class in C# 10 /// <summary> /// Positional parameters syntax /// 位置参数的语法 /// </summary> /// <param name="EmployeeId"></pa 阅读全文
posted @ 2022-11-07 23:30 ®Geovin Du Dream Park™ 阅读(38) 评论(0) 推荐(0) 编辑
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 107 下一页