Related resources for Reference Types
  • Understanding C# Data Types4/8/2024 11:24:28 AM. Understanding C# Data Types is essential for programming in C#. It involves grasping primitive types like integers, floating-point numbers, booleans, and characters, as well as complex types like stri
  • Boxing and Unboxing in C#3/28/2024 10:40:41 AM. In this article, we will learn Boxing and unboxing in C# allow conversion from value types to reference types and vice versa. This article explains boxing and unboxing in C#.
  • A Comprehensive Guide to Nullable Reference Types in C# 103/8/2024 2:55:22 AM. Explore a comprehensive guide to leveraging nullable reference types in C# 10 by Ziggy Rafiq, providing detailed explanations, code examples, and best practices for improving code safety and robustnes
  • Value Types vs Reference Types in C#11/19/2023 6:02:26 AM. This comprehensive guide delves into the fundamental concepts of C# data types, distinguishing between value types and reference types. Covering characteristics, pros and cons, key differences, and be
  • Understanding Generic Type in C#9/12/2023 5:07:25 AM. Before we start tampering around the code, lets understand why we need a generic type?
  • Difference between passing reference types by ref and by value11/18/2022 6:21:31 AM. We all know the difference between passing value types byval and byref, if the variable is passed byval any change to the variable value in the called function is not reflected back in the callee.
  • == Operator and Reference Types in C#1/1/2021 5:54:25 AM. In this article, you will learn how equality operator works behind the scene when comparing reference types
  • Implementing Equality For Reference Types12/22/2020 5:10:45 AM. In this article, you will learn to Implement Equality for Reference Types.
  • 6 Important .NET Concepts11/26/2020 12:06:43 AM. This article will explain 6 important concepts: Stack , heap , by val , by ref , boxing and unboxing.
  • JavaScript Primitive And Reference Types10/2/2020 9:45:49 AM. This article will discuss the builtin types of JavaScript and the difference between primitive and reference types.
  • Nullable Reference Types in C# 87/28/2020 1:22:03 AM. In this video, we will talk about C# newly introduced feature which is nullable reference types
  • C# 8 Positional and Property Pattern7/28/2020 1:18:10 AM. C# 8 Positional and Property Pattern
  • Working With Nullable Reference Types In C# 8.010/14/2019 11:35:32 PM. This article explains how to work with Nullable reference types in C# 8.0 and demonstrates how to use it in application development.
  • Reference Types In Solidity5/19/2019 12:48:31 PM. The Solidity data types can be classified according to the data location. If a variable stores its own data; it is a value type. If it holds a location of the data; it is a reference type. We have gon
  • Value Type And Reference Type Variables2/19/2019 8:40:28 AM. In this article we will learn about Value Type and Reference Type variables.
  • Working With Data Types10/13/2012 4:17:23 AM. Explains data types in C# and how to work with them.
  • C# Methods : Part II 6/6/2007 4:50:58 AM. This article completes our discussion of methods. In this article, you will learn parameter passing, reference and value type parameters, and method overloading.
  • Boxing and Performance of Collections1/3/2006 5:49:30 AM. In this article, I will compare some performance issues of values and references types during boxing and unboxing operations.