IsNullOrWhiteSpace() public static method

Identical to NET4.0 IsNullOrWhiteSpace()
public static IsNullOrWhiteSpace ( string s ) : bool
s string
return bool
Beispiel #1
0
 /// <summary>
 /// Disable or enable Add passphrase button based on the text in the edit box
 /// </summary>
 private void TextBoxInputPfTextChanged(object sender, EventArgs e)
 {
     btAddPf.Enabled = !ClassUtils.IsNullOrWhiteSpace(textBoxInputPf.Text);
 }