A Complete Guide to C# Parameter Passing Keywords: ref, out, in, params, thisC# offers a variety of keywords to control how method arguments are passed, improving both readability and efficiency of code. Keywords…Nov 27, 2024Nov 27, 2024
[C#] Delegate vs Action vs FuncIn C#, there are three commonly used types for handling events and callbacks: delegate, Action, and Func. Each type has its own advantages…Nov 21, 2024Nov 21, 2024
[unity] Action vs UnityEventWhen developing in Unity, there are two commonly used methods for implementing event systems: C#’s Action delegate and UnityEvent. Each of…Nov 20, 2024Nov 20, 2024