c#学习笔记

C# Parameter Modifiers Parameter Modifier Meaning in Life (None) If a parameter is not marked with a parameter modifier, it is assumed to be passed by value, meaning the called method receives a copy of the original data. out Output parameters must be assigned by the method being called (and therefore are passed by reference). … Read more