you don't need to use 'ref' with reference types

This commit is contained in:
2026-01-11 02:48:15 +05:00
parent 6d7b57c9f9
commit 46dc513e87
3 changed files with 6 additions and 6 deletions

View File

@@ -200,7 +200,7 @@
currentOperandTextBox.ForeColor = Color.White;
CalculatorPanel.Controls.Add(currentOperandTextBox);
equationManager.AcquireOutputLabels(ref equationTextBox, ref currentOperandTextBox);
equationManager.AcquireOutputLabels(equationTextBox, currentOperandTextBox);
CalculatorPanel.Show();