C#

Features of C# 9.0

Features of C# 9.0 1) Records 2) Init-Only Properties 3) Top Level Statements 4) Target-Typed New Expressions 5) Improved Pattern…

2 years ago

Features of C# 7.0

C# 7 was released in 2017 with several new features to the C# language. Some of the notable features of…

2 years ago

What is string interpolation in C#

Interpolating expression values into literal strings is possible with the technique known as string interpolation. String interpolation feature was introduced in…

3 years ago

What Is The Use Of Volatile Keyword In C#

A variable's value must never be cached in C#  because it may change outside of the scope of the program…

3 years ago

Get System IP Address Using C#

When it comes to networking, IP addresses are a must-have. While it may not be as critical from a C#…

3 years ago

C# Fixed Size Buffer

C# Fixed Array This article covers declaring a C++ style fixed-size structure was difficult in earlier versions of C#. But…

3 years ago