Method Parameters (C# Reference)

If a parameter is declared for a method without ref or out, the parameter can have a value associated with it. That value can be changed in the method, but the changed value will not be retained when control passes back to the calling procedure. By using a method parameter keyword, you can change this behavior.

This section describes the keywords you can use when declaring method parameters:

See Also

Reference

C# Keywords

Concepts

C# Programming Guide

Other Resources

C# Reference