X

AWS Lambda Dotnet C# could not find the specified handler assembly with the file name ‘LambdaTest’

If you are working on AWS Lambda Dotnet with C# and find out that you are getting something like an…

Async Main in C# 7

In C#7 there is an enhancement in the main method Async Main in C# that will allow you to await…

out parameter improvements in C# 7

In C#7 there is an improvement on using out parameter. Some of you may remember writing code like below. [crayon-6a3c859879db2427983305/]…

Local functions in C#

In C# 7 there the new feature called Local functions in C#. Basically Local functions allow one to write a…

Expression Bodied Accessors in C#

In C# 7 there are Expression Bodied Accessors which allows you to write getter and setters somewhat more functional way,…

Digit Separators and Binary Literals in C#

In C#7 there are Digit Separators and Binary Literals which were added. One may wonder what these are? Basically you…

What is the advantage of using discards in C#?

So one may ask "What is the advantage of using discards in C#?", and if you don't know what discards…

C# what is the difference between ValueTuple and Tuple

Some may wonder what is the difference between ValueTuple and Tuple that was released in C# 7, and you might…

How to ask Gatsby to request data from GraphQL

As we have got to know that Gatsby has built in GraphQL, we will learn this time how to ask…

Creating a layout in Gatsby with VSCode

We have our footer and header together and it's time to talk about Layout. We can create a layout component…