C# functional programming in-depth (3) Local Function and Closure
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
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
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
Programming paradigm is the fundamental style of programming. There are , for example:
2815 words
|
14 minutes
Functional Programming and LINQ Paradigm (2) LINQ Overview
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
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
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
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