News

In C# 9 lambda or anonymous methods can have a static modifier. This article talks about static anonymous functions and why they are useful, using code examples to illustrate the concepts.
Starting in ES2018, the ECMAScript specification requires that the returned string contain the exact same source code as it was declared, including any whitespace and/or comments. If the host is ...
This method takes string as an input and returns it's equivalent Guid value. An ArgumentNullException is thrown when input parameter is null and FormatException is thrown when input parameter is in ...
With C# 7 around, you can now declare such functions inside another the body of another function. Such functions are known as local functions. In other words, the support for local functions ...