C# functional programming in-depth (3) Local Function and Closure
2018-06-03
C# 7.0 introduces local function, which allows defining and calling a named, inline function inside a function member’s body. Unlike a local variable, which has to be used after being defined, a local
1906 words
|
10 minutes
C# functional programming in-depth (2) Named function and function polymorphism
2018-06-02
In C#, the most intuitive functions are method members of class and structure, including static method, instance method, and extension method, etc. These methods have names at design and are called by
3447 words
|
17 minutes
C# functional programming in-depth (1) C# language fundamentals
2018-06-01
C# 1.0 was initially released in 2002, as its first language specification says at the beginning, C# is a “simple, modern, object oriented, and type-safe” programming language for general purpose. Now
5427 words
|
27 minutes
Functional Programming and LINQ Paradigm (3) Programming Paradigms and Functional Programming
2018-05-30
Programming paradigm is the fundamental style of programming. There are , for example:
2815 words
|
14 minutes
Functional Programming and LINQ Paradigm (2) LINQ Overview
2018-05-29
As fore mentioned, LINQ consists of syntax in languages and APIs in libraries:
3456 words
|
17 minutes
Functional Programming and LINQ Paradigm (1) Getting Started with .NET/Core, C# and LINQ
2018-05-28
This is a tutorial of functional programming and LINQ in C# language. The contents was initially based on my . Hope it helps.
3803 words
|
19 minutes
Remote desktop connection authentication error due to CredSSP encryption oracle remediation
2018-05-13
Recently, when connecting to another Windows machine with RD, I got the following RDP authentication error due to CredSSP encryption oracle remediation:
324 words
|
2 minutes
End-to-end: Setup PHP Debugging for Visual Studio Code on Windows
2018-04-07
This is a quick tutorial of minimum installation and configurations of development environment for PHP programming, including Apache, PHP, and Visual Studio Code (VSCode) on 64 bit Windows.
372 words
|
2 minutes