hi im making my own Spammer which will spam text for me in c# now i found and problem with it that when ever i enter 1+ or +1 or (any number)+1 gives out ! or (given number)! and idk how to fix it btw here is the code where it sends the keys
//String & Ints
int a, c;
string b;
//base program
b = textBox1.Text;
c = 1;
a = Int32.Parse(textBox3.Text);
Thread.Sleep(5000);
//program
for (; c <= a; c++)
{
SendKeys.SendWait(b);
SendKeys.Send("{ENTER}");
}