Button btn = new Button();
btn - , .
, , , :
public void MakeButtonBold(Button button)
{
button.Font.Bold = true;
}
, pass-by-value, . , ., , , , , .
, -
public void ReplaceButtonWithBold(Button button)
{
button = new Button();
button.Font.Bold = true;
}
, , .
, ref, , , . , ReplaceButtonWithBold ref, .
, ref, - , .
, ref ,