News

In this article, I look at the characteristics and specifics of C# data types as a way for developers to have a better grasp of what the language has to offer. C# allows you to define two types of ...
Take advantage of anonymous types in C# to create and instantiate types that ... as shown in the code snippet below. foreach (var data in result) Console.WriteLine(data.Name); The complete program ...
Take advantage of nullable types to assign 'no values' or 'null values' to value types when there is no value available The C# language provides support for two types of data: value types and ...