[Solved] How to incrase counter value when both textbox value are equal in onClick using C# [closed]

[ad_1]

Are you referring to something like this?

int counter = 0;

//in event

if(textbox1.ToString().Equals(textbox2.ToString()))
{
counter++;
}

2

[ad_2]

solved How to incrase counter value when both textbox value are equal in onClick using C# [closed]