Expression Bodied Local Function in C# 7.0
“Expression-bodied methods” were introduced with C# 6.0, that simplify the syntactic expression for methods in C#. C# 7.0 extend this…
“Expression-bodied methods” were introduced with C# 6.0, that simplify the syntactic expression for methods in C#. C# 7.0 extend this…
During development, often we use literal in our code. They are the fixed values which may not alter during the…
In C# 7.0, you can now have your helper function defined with in the method itself. The local function can…
In C#, we often used Out parameter, as like call by reference, mostly when we want to return multiple values…
In one of our previous post, Expression – Bodied Members in C# 7.0 , we have seen how C# 7.0…
Expression-bodied methods was introduced with C# 6.0, that simplify the syntactic expression for methods in C#. We have seen this…