Deepak Kumar Jainthoughtcopy.com·Jul 19, 2023C# - Value Types Versus Reference TypesC# types can be divided mainly into two categories: value types and reference types. In this article, we would be having a closer look at these two types. Value Types Most of the c# built-in types such as numeric types, char types and boolean types ...88 readsC# beginner tutorial C#
Deepak Kumar Jainthoughtcopy.com·Jul 11, 2023A Beginner's Guide to C# Access Modifiers: Learn the BasicsAccess modifiers determine the accessibility of a type or type member, indicating which parts of a C# program can access those types and their members. By protecting types and members from unintended access, access modifiers contribute to achieving e...115 readsC# beginner tutorial C#
Deepak Kumar Jainthoughtcopy.com·Jun 22, 2023C# : Boxing and UnboxingWhile working with C# datatypes, developers often needs to convert value types to reference type or vice-versa. The process of converting value type to reference type is termed as boxing and converting a reference type to value type is termed as unbo...81 readsC# beginner tutorial C#