Daily Learning

1.Sort()
https://www.cnblogs.com/saifei/p/9043821.html

2.ES2015
https://www.jianshu.com/p/220a54f7adce

3.Angular Table
https://www.jianshu.com/p/b3dc5fdd077e
https://blog.csdn.net/sinat_29729453/article/details/60870617 !!!
https://www.imwhite.com.cn/2019/02/understand-angular-material-table/ !!!

4.Bootstrap
https://www.bootcss.com/ !!!

2019.11.29
https://stackoverflow.com/questions/44931479/compiling-vs-transpiling

2019.12.04
https://www.baidu.com/link?url=U92cT_k5R_E_ChtQabGzr6dV95lUbzb25ZuGYCIsIuTlSlpo3_1C1m1PPeiW6T6163xBM6zm9co_SYlx702aXa&wd=&eqid=bf18f41e000d6473000000045de70c58

Abstruct Virual
https://blog.csdn.net/wzj0808/article/details/51388034
https://blog.csdn.net/qq_15267341/article/details/72849901

Windows Service
https://blog.csdn.net/setygaspnet/article/details/45603095

https://www.cnblogs.com/hbccdf/p/3491641.html

Ioc
https://www.cnblogs.com/dotnet261010/p/9054201.html

!!!
https://www.cnblogs.com/dotnet261010/category/1027869.html

Call between different assembly
https://blog.csdn.net/feelingdu/article/details/65010525

Ioc in Unity
https://www.cnblogs.com/dotnet261010/p/9054201.html

函数式编程
https://blog.csdn.net/moonbc/article/details/89494017

DTO
Params
RESTful
Datacontract
SOAP
Rabbitmq
Asp.net 自定义服务器控件
String.Empty
C# set get
PropertyChangedEventHandler

微服务

https://www.cnblogs.com/xiao2shiqi/p/11298663.html
https://www.jianshu.com/p/0a3e959ecb81

RSESTful
https://www.runoob.com/w3cnote/restful-architecture.html
https://www.jianshu.com/p/f580370ac345

Jquery 链式语法
https://blog.csdn.net/qq_32252957/article/details/86557324

Module and Component
https://blog.csdn.net/HorkyChen/article/details/45083467

127.0.0.0:身体
Localhost:本人
本机IP:名字

{ get; set; }
https://bbs.csdn.net/topics/391893705

AOP
https://www.jianshu.com/p/0799aa19ada1

IDisposable
Attribute Flags
SignalR

Javascript
Prototype
https://www.cnblogs.com/douyage/p/8630529.html

Javascript
Slice()
https://www.w3school.com.cn/js/jsref_slice_array.asp

Splice()
https://www.w3school.com.cn/jsref/jsref_splice.asp

Iterator模式

Virual
https://www.cnblogs.com/hclw/p/3919435.html
https://www.cnblogs.com/zhaoshujie/p/10502404.html

Base()
https://www.cnblogs.com/stone2012/p/7436566.html
base 是和 this 相对的,this 代表当前类,base 代表父类。

比如父类里有个 int a; 子类里也有个 int a;,那么 base.a 和 this.a 就是不一样的,除非明确继承关系。

base(id)就是调用父类的带有id参数的构造函数。

C#里面的this和base 跟JAVA里面的this和super是一样的。你在定义一个变量的时候有一个this引用,指向自身,还有一个引用base,指向父类。关于你说的那种情况就是我说的第一种,如果子类成员有和父类成员同名的时候,就必须用this和base区分。

C# List
First() //List will throw exception if no first element
FirstOrDefault()//List return null if no first element

C# EventHandler
https://blog.csdn.net/qq_40666028/article/details/80916020
C# (object sender, EventArgs e)
.NET中event有两个必要参数,object sender指的是事件监视的对象(即事件源对象),EventArgs就是事件所需的数据。Sender是object对象,转类型才能使用。e即记录事件传递过来的额外信息,一般用于传递用户点击的位置啊,键盘按下的键等事件的额外信息,不同的事件传递的信息也不同。

.NET
newStr1=Str.Trim();//即可去掉该字符串头尾的所有空白字符

Html class id
https://blog.csdn.net/libaoqiang613/article/details/8280651?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.none-task

Convert.ToInt32、int.Parse(Int32.Parse)、int.TryParse、(int) 四者都可以解释为将类型转换为 int,那它们的区别是什么呢?
Convert.ToInt32 与 int.Parse 较为类似,实际上 Convert.ToInt32 内部调用了 int.Parse:
Convert.ToInt32 参数为 null 时,返回 0;
int.Parse 参数为 null 时,抛出异常。
Convert.ToInt32 参数为 “” 时,抛出异常;
int.Parse 参数为 “” 时,抛出异常。
Convert.ToInt32 可以转换的类型较多;
int.Parse 只能转换数字类型的字符串。
int.TryParse 与 int.Parse 又较为类似,但它不会产生异常,转换成功返回 true,转换失败返回 false。最后一个参数为输出值,如果转换失败,输出值为 0。

Runtime

C# static
https://baijiahao.baidu.com/s?id=1654392225934215616&wfr=spider&for=pc

API
https://blog.csdn.net/ljh_gemini/article/details/86551799

Context上下文
https://www.cnblogs.com/FredWang/p/4239586.html

中间件
https://blog.csdn.net/intermediat/article/details/96178217

阻塞IO 非阻塞IO
https://blog.csdn.net/yyxyong/article/details/62894064

callback
https://www.zhihu.com/question/19801131

Cookie Session Token

内存泄漏和内存溢出

DTO MO
https://www.cnblogs.com/loveis715/p/4379656.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值