上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 17 下一页
摘要: 5、工厂方法模式(未完成) 阅读全文
posted @ 2021-12-21 14:16 艾特-天空之海 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 3、适配器模式 提供适配器的类,此类可以根据传参的类,执行不同的类的实现 namespace SJ.DesignMode { /// <summary> /// 设计模式 /// </summary> class Program { static void Main(string[] args) { 阅读全文
posted @ 2021-12-21 14:14 艾特-天空之海 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 2、外观模式 一个类的一个方法中执行其他类的方法,客户端操作方便 //把需要暴露给外部的功能集中到外观中 //什么时候使用? 多层结构系统、松散偶尔、简化客户端使用 namespace SJ.DesignMode { /// <summary> /// 设计模式 /// </summary> cla 阅读全文
posted @ 2021-12-21 14:12 艾特-天空之海 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 1、简单工厂 (调用静态方法实例化需要的类) class Program { static void Main(string[] args) { //1、简单工厂 IMan man = Factory.Create(FactoryType.Student); man.Go(); } } public 阅读全文
posted @ 2021-12-21 14:09 艾特-天空之海 阅读(24) 评论(0) 推荐(0) 编辑
摘要: .Net5发布后的程序运行不了? 如下图: 解决方案:需要安装 Hosting Bundle , 下载地址为:https://dotnet.microsoft.com/en-us/download/dotnet/5.0; 参考链接:https://www.cnblogs.com/breakus/p/ 阅读全文
posted @ 2021-12-18 17:20 艾特-天空之海 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 使用Session,需要配置:在Startup类中,在ConfigureServices方法中注册:services.AddSession(), 在Configure中配置: app.UseSession(); 用法: 命名空间: Microsoft.AspNetCore.Http; 查询: var 阅读全文
posted @ 2021-12-18 14:42 艾特-天空之海 阅读(35) 评论(0) 推荐(0) 编辑
摘要: Startup种; 1、在ConfigureServices方法中添加服务: services.AddMvc(p => p.EnableEndpointRouting = false); 2、在Configure中添加配置: app.UseMvcWithDefaultRoute(); 阅读全文
posted @ 2021-12-18 14:37 艾特-天空之海 阅读(95) 评论(0) 推荐(0) 编辑
摘要: List<Object> list = new List<object>(); list.Add(0); list.Add(new List<int>() { 2, 4, 6 }); list.Add(null);List<Object> list = new List<object>(); lis 阅读全文
posted @ 2021-12-18 10:37 艾特-天空之海 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 当某个值发生变化时,将触发事件; using System; using System.ComponentModel; namespace ConsoleApp1 { class Program { static void Main(string[] args) { //TestClassCShar 阅读全文
posted @ 2021-12-17 23:22 艾特-天空之海 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 从官网(https://abp.io/)下载项目后,运行; 错误如下: SqlException: Cannot open database "BookStore" requested by the login. The login failed. Login failed for user 'SJ 阅读全文
posted @ 2021-12-17 11:34 艾特-天空之海 阅读(409) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 17 下一页