Another short post about ref and out – keywords that are used to pass parameters to functions.Using them we have to also remember that in both cases, the parameters are passed as references (address) and not values. Ref In the case of ref, the variable must be initialized before passing it as a parameter. With …
Month: June 2017
Const vs readonly #L4
Today, we will describe very shortly what are the differences between const and read only – used to declare immutable variables. Const The value of the constant is assigned during compilation. In binary code, specific values appear instead of a variable. The value can only be assigned during the declaration. The const values can’t be …