C# Compared—Functions
Microsoft .NET Framework, ASP.NET, Visual C# (CSharp, C Sharp, C-Sharp) Developer Training, Visual Studio
| CSharp-Online.NET:Articles |
| C# Articles |
| © 2005 C. Gunnerson, et al. |
Functions
In C#, function parameters must have a declared type, and ref is used instead of ByVal to indicate
that the value of a passed variable may be modified. The ParamArray function can be achieved by
using the params keyword.
|

