Kerwen Blog

Stay Hungry Stay Foolish

C# .Net Core

微软官方地址: https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/ 中文版: https://docs.microsoft.com/zh-cn/dotnet/csharp/whats-new/

C# 反射

微软官方地址: https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/ 中文版: https://docs.microsoft.com/zh-cn/dotnet/csharp/whats-new/

C# 线程通信

微软官方地址: https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/ 中文版: https://docs.microsoft.com/zh-cn/dotnet/csharp/whats-new/

VBScript Functions

VBScript functions 介绍 https://www.w3schools.com/asp/asp_ref_vbscript_functions.asp#string Example to rename a File 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 subFuns Privat...

C# 线程

线程生命周期 线程生命周期开始于 System.Threading.Thread 类的对象被创建时,结束于线程被终止或完成执行时。 下面列出了线程生命周期中的各种状态: 未启动状态: 当线程实例被创建但 Start 方法未被调用时的状况。 就绪状态: 当线程准备好运行并等待 CPU 周期时的状况。 不可运行状态: 下面的几种情况下线程是不可运行的: 已经调用 ...

C# 各个版本的新特性

微软官方地址: https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/ 中文版: https://docs.microsoft.com/zh-cn/dotnet/csharp/whats-new/ C# 2.0 版 VS2005 泛型 分部类型 (partial) 匿名方法 (在 C# 3.0 及更高版本中,Lambd...

C# 泛型

原文地址: https://www.cnblogs.com/yueyue184/p/5032156.html 微软官方文档: https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/generics/ C# 语言和公共语言运行时 (CLR) 的 2.0 版本中添加了泛型。 泛型将类型参数的概念引入 .NET Fra...

Python基础

Python 标准库目录 https://docs.python.org/3.5/library/index.html Functions 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 def FunctionName(): Function body def FunctionName(para): Function bod...

C# string-特殊的引用类型

String的不变性 1 2 3 4 5 string str1 = "ab"; string str2 = str1; str1 = "abc"; Console.WriteLine("str1 is {0},str2 is {1}", str1, str2); Console.Read(); 输出结果: 1 //str1 is abc,str2 is ab string最为显...

MSI Commandline

MSI 输出log 1 /L*V "C:\package.log" Admin安装 1 msiexec /a foo.msi TARGETDIR=C:\EXTRACT\ /qn /norestart /l*v admin_install.log