I have some algorithm written in c#:
int num3 = 260005;
string text = this.textBox1.Text;
int length = text.Length - 4;
int num5 = ((Convert.ToInt32(text.Substring(4, length)) - 0x7d1) / 2) - 0x7d1;
if (num3 == num5)
{
do somthing!!!
}
Can somebody explain how to get correct input for textBox1? I try some math but i stuck.
I see now. I was confused with 4 character that are trow away.