[Solved] Can someone help me with my tic tac toe logic

I have found my mistake, and I am really sorry about taking your time. I noticed that I didn’t place my function to the event handler. private void label3_Click(object sender, EventArgs e) { count++; chechTurn(); printXorO(_01); checkWin_Loose_Draw();// here … _01.Enabled = false; } 2 solved Can someone help me with my tic tac toe logic

[Solved] Can we call interface methods from windows forms in c#? [closed]

Yes, it’s a common practise in any OOP based language to use only the definition of an object so that implementation details can be changed at a later time Let’s say you have the following interface public interface ISearchProvider { ISearchResult Search(ISearchRequest request); } If you now implement a property inside your windows forms, that … Read more