Related resources for passing reference type
  • 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
  • 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.