判斷物件類型

判斷物件類型


if(sender is TextBox)
{
    //...
}

// 2.
if(sender.GetType().Equals(typeof(string)))
{
    //...
}