C#
TextBox text null check
Louiey
2018. 11. 13. 14:38
if (!string.IsNullOrWhiteSpace(textbox.Text))
{
//code here
}
if (!string.IsNullOrWhiteSpace(textbox.Text))
{
//code here
}