Textbox clear

hi,
I have a text field that gives me a value.

<RadzenTextBox Change=@(args => PassTextAddNewColumn(args)) Visible="zmienneglobalne.Vis" Style="height:20px;width:200px" />
void PassTextAddNewColumn(string value)
{
    PassTextAddNewColumnToButton = value;
    
    value = "";

    
}

I then click a button that adds data to the table, but then I would like it to automatically clear the text field

<RadzenTextBox bind-Value="PassTextAddNewColumnToButton" Visible="zmienneglobalne.Vis" Style="height:20px;width:200px" />

Using bind-Value property is a better approach. After that PassTextAddNewColumnToButton="" will do the trick