Interview Questions Books
Practical Software Factories in .NET (Books for Professionals by Professionals) C# Quiz SQL Server – Interview Questions
What’s happening in C# 9.0
C# 9.0 adds the accompanying highlights and improvements to the C# language: Sl.No Details 1 Records 2 Target-typed new expressions…
Required extensions in VS Code
If you are using VS Code Insiders then replace code with code-insiders
How to reverse the words in a sentence using C#.
We can achieve it by splitting the string into words and the reverse those, please review the below sample example…
Local Function in C#
Local functions are private functions of a type that are nested in another member. They can only be called from…
How to Create Angular Project | Angular 10 | Angular 9 | Visual Studio Code
To create the angular project in Visual Studio Code, we need install nodejs, angular cli, please follow the steps in…
How to reverse a string?
Type 1: using System; public class Program { public static void Main() { String strValue=Console.ReadLine(); Console.WriteLine("Input String:{0}",strValue); Console.WriteLine("Reverse String:{0}",ReverseString(strValue)); }…