Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.41 KB | None | 0 0
  1.             for (int i = 0; i < textBox2.Text.Length; i++)
  2.             {
  3.                 if (((textBox2.Text[i] >= 'a') && (textBox2.Text[i] <= 'z')) || ((textBox2.Text[i] >= 'A') && (textBox2.Text[i] <= 'Z')))
  4.                 {
  5.                     string y = "true";
  6.                     break;
  7.                 }
  8.             }
  9.  
  10.             else if ((x == "true") | (y == "true"))
  11.             {
  12.  
  13.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement