上一页 1 2 3 4 5 6 ··· 15 下一页
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks 阅读全文
posted @ 2020-05-21 17:46 谁说程序猿很猥琐 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 1 安装包 设置 注释文档生成路径: 与这个保持一致 controller: using Domain.Service; using Domain.Service.Models; using H5_WeiXin.App_Start; using Microsoft.Ajax.Utilities; u 阅读全文
posted @ 2020-05-21 16:24 谁说程序猿很猥琐 阅读(385) 评论(0) 推荐(0) 编辑
摘要: <system.webServer> <handlers> <remove name="ExtensionlessUrlHandler-Integrated-4.0" /> <remove name="OPTIONSVerbHandler" /> <remove name="TRACEVerbHan 阅读全文
posted @ 2020-05-21 16:21 谁说程序猿很猥琐 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-08 09:11 谁说程序猿很猥琐 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 泛型缓存比 字典 效率高好几百倍,因为是jit事先编译好的 /// <summary> /// 每个不同的T都会生成一份不同的副本 /// 适合不同类型,需要缓存一份数据的场景,效率高 /// </summary> /// <typeparam name="T"></typeparam> publi 阅读全文
posted @ 2020-05-04 14:58 谁说程序猿很猥琐 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1、https://devblogs.microsoft.com/dotnet/building-c-8-0/ 2、https://www.cnblogs.com/springsnow/p/11046251.html <PropertyGroup> <LangVersion>8.0</LangVer 阅读全文
posted @ 2020-05-04 10:06 谁说程序猿很猥琐 阅读(472) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-04-29 21:54 谁说程序猿很猥琐 阅读(109) 评论(0) 推荐(0) 编辑
摘要: c# 是一个面向oop的编程语言,还是面向.Net 的编程语言 组合优于继承 2、 c# 与.net 没啥关系, 怎么证明没有关系, 1、比如 U3D,他只是以c#作为编程语言,但是与.Net 没有任何关系 VS与c# 关系 隐藏绑定关系 阅读全文
posted @ 2020-04-26 22:22 谁说程序猿很猥琐 阅读(873) 评论(0) 推荐(0) 编辑
摘要: 名称 说明 Add 将两个值相加并将结果推送到计算堆栈上。 Add.Ovf 将两个整数相加,执行溢出检查,并且将结果推送到计算堆栈上。 Add.Ovf.Un 将两个无符号整数值相加,执行溢出检查,并且将结果推送到计算堆栈上。 And 计算两个值的按位“与”并将结果推送到计算堆栈上。 Arglist 阅读全文
posted @ 2020-04-26 13:00 谁说程序猿很猥琐 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 回调函数: 当一个函数执行完,执行作为参数传进来的函数。 通常是通过函数指针来调用。当函数执行完,将指针地址作为参数传递给另一个函数,这个指针被用来调用所指向的函数,称之为回调函数。 委托(delegate):委托的本质就是一个回调函数帆软封装。 事件(event): 事件的本质其实是对委托的封装, 阅读全文
posted @ 2020-04-26 09:40 谁说程序猿很猥琐 阅读(458) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 15 下一页