Answers for "how to check if textbox is empty in c#"

C#
1

c# check if textbox is not empty

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

how to check if textbox is empty in c#

string.IsNullOrWhiteSpace(textBox.Text); // returns boolean
Posted by: Guest on June-17-2020

Code answers related to "how to check if textbox is empty in c#"

C# Answers by Framework

Browse Popular Code Answers by Language