Related resources for C# parameters
  • Using the out Parameter3/22/2022 6:13:45 AM. Did you ever need your method return more than one value? The out keyword can be used to do the same.
  • All About Ref and Out Type Parameters7/8/2015 12:40:47 AM. In this article we will learn about the ref and out type parameters in C# programming.
  • Using the ref Parameter12/23/2005 4:19:11 AM. The ref keyword on a method parameter causes a method to refer to the same variable that was passed as an input parameter for the same method. If you do any changes to the variable, they will be reflected in the variable.