Related resources for reference type
  • Stack Vs Heap Memory - C#6/7/2024 10:28:14 AM. Explore the nuances of memory management in C# programming, distinguishing between value types and reference types, understanding dynamic and static memory allocation, evaluating access efficiency, r
  • Ref And Out keyword In C#5/24/2024 10:17:06 AM. IN this article, we will learn Ref" and "Out" keywords in C# are used to modify method parameter behavior. "Ref" passes parameters by reference, allowing method changes to ref
  • Boxing and Unboxing in .NET C#5/14/2024 5:20:51 AM. In C#, boxing and unpacking are crucial ideas. Value types (int, char, etc.), Reference types (object), and Pointer types are the three forms of data in the C# type system. In essence, Unboxing does t
  • Understand Virtual Object.Equals, Static Object.Equals and Reference.Equals in Object Class5/1/2024 11:12:00 AM. In the Object class of C#, the Equals method can be overridden, creating virtual and static versions. Virtual Equals compares content, static compares references, while Reference. Equals provide refer
  • Implementing Equality For Reference Types4/25/2024 7:58:08 AM. Learn how to implement equality for reference types in C# to compare objects based on their values rather than their references. Understand the complexities introduced by inheritance and null handling
  • 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
  • C# - Understand Equality For Value Type And Reference Type2/29/2024 9:55:15 AM. In this article, you will learn about the nuances of equality comparison in C#, distinguishing between value types (like structs) and reference types (like classes). Understand how the == operator beh
  • 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
  • Is There Any Need To Boxing And Unboxing10/10/2023 11:10:32 AM. With Boxing and unboxing one can link between value-types and reference-types by allowing any value of a value-type to be converted to and from type object. Boxing and unboxing enables a unified view
  • Working Of Reference Type And Value Type10/9/2023 5:36:31 AM. This article shows you all the difference between reference and value type variables.
  • Boxing and Unboxing10/3/2023 12:02:07 PM. Details about the value type, reference type and details about the boxing and unboxing in C#.
  • 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?
  • Stack, Heap, Value Type, And Reference Type In C#9/5/2023 8:21:56 AM. Now, let’s see what happens when we declare any variable like int a=10 in C#. When C# compiler will run, it will allocate a block of memory which will have name of variable i.e. a, its type i.e. int a
  • Difference Between Value Type And Reference Type9/4/2023 11:11:55 AM. This article tells us the difference between value type and reference type variables.In programming, data types are categorized as either "value types" or "reference types." These
  • C# Heap(ing) Vs Stack(ing) In .NET - Part Two6/6/2023 8:25:13 AM. Having a basic understanding of how memory management works will help explain the behavior of the variables we work with in every program we write. In this article I'll cover some of the behavior
  • C# Heap(ing) Vs Stack(ing) In .NET - Part One6/6/2023 8:17:38 AM. Even though with the .NET framework we don't have to actively worry about memory management and garbage collection (GC), we still have to keep memory management and GC in mind in order to optimize
  • Reference Types Are Not Passed By Reference!2/20/2023 5:15:13 AM. This article will help you to understand what are the real differences between reference and value types and how reference types behave under the hood
  • 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.
  • Ref Vs Out And Value Type Vs Reference Type9/6/2022 6:35:20 AM. In this article, you will learn about ref vs out and value type vs reference type.
  • Constraints in Generics9/2/2022 10:18:23 AM. Constraints are used in Generics to restrict the types that can be substituted for type parameters. Here we will see some of the commonly used types of constraints.
  • Reference Type And Value Type in C#4/11/2022 6:20:17 AM. This article will give you a clear insight on what happens when a reference type is passed by value and what would happen when it is passed by reference.
  • C# Concepts - Value Type And Reference Type3/31/2022 9:52:01 AM. This article explains C# concepts of Value and Reference types.
  • Introduction To Boxing And Unboxing In C#4/6/2021 9:15:19 PM. There are two functions used for typecasting the data types in C#, i.e: boxing and unboxing. Read to understand how to perform these conversions.
  • Preparing .NET Interview - Part 2 (Basic Types)2/9/2021 7:33:38 AM. This article presents the common questions asked in .NET interview related to types and explains the answers in easy way.
  • == 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
  • 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.
  • Boxing and Unboxing in TypeScript10/14/2019 3:07:43 AM. In this article I am going to explain boxing and unboxing in TypeScript.
  • 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
  • Boxing and Unboxing4/1/2019 12:30:53 PM. Boxing and Unboxing in C# are conversion from value types to reference types and vice versa.
  • 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.
  • Using an Array as a Parameter in C#8/25/2018 6:46:49 AM. This article is about passing a reference type (like an array) to a method.
  • Difference Between Value Type Variables And Reference Type Variables4/3/2018 11:55:44 PM. Before we get started between the difference of value type variables and reference type variables, we need to understand the concept of stack and heap. So let’s get started with stack and heap.
  • C# 8.0 - Experimenting With Non-Nullable Reference Type Using Visual Studio 201712/28/2017 7:46:47 PM. Nullable Reference Type is one of the most popular upcoming features of C# which may be released with C# 8.0. However, C# 8.0 has not been released yet; development is going on so till the final relea
  • Generic Constraints In A Nutshell2/13/2017 11:45:59 PM. This video describes about Generic Constraints.
  • All About Methods in C#4/10/2014 1:06:08 PM. This article explains methods and their few unsung features.
  • 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.