C#中的TypeOf和CType代码等效

时间:2017-12-18 02:22:34

标签: c# vb.net

有人可以帮我提供与C#相同的代码

Top

1 个答案:

答案 0 :(得分:3)

public void ClearTextBox(Control root)
{
    foreach (Control ctrl in root.Controls)
    {
        ClearTextBox(ctrl);
        if (ctrl is TextBox)
        {
            ctrl.Text = string.Empty;
        }
    }
}