IsNullOrWhiteSpace() 공개 정적인 메소드

Identical to NET4.0 IsNullOrWhiteSpace()
public static IsNullOrWhiteSpace ( string s ) : bool
s string
리턴 bool
예제 #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);
 }