Answers for "c# check textbox.text is not null"

C#
3

c# check if textbox is not empty

if (String.IsNullOrEmpty(textBox1.Text))
{
    // Do something...
}
Posted by: Guest on August-30-2020

C# Answers by Framework

Browse Popular Code Answers by Language