need implement C# Counter

I want to make increment and decrement counter. There are two buttons called X and Y. If first press X and then press Y counter should increment. If first press Y and then press X counter should decrement. I am not familiar with c#. So can anyone help me please ?? 🙁

Adding a timer to my program (javafx)

Timer is used to schedule tasks.. So where do you write those tasks?? Well you have to write those tasks in a TimerTask class… Confused ? Let me break it down, Now you have created a object of Timer class .. Now you have to do some task right? So to do that create an object of TimerTask. Now you … Read more