redlotus2908
ASP.NET Controller API + Blazor Client UI resources and help
If it is how the .NET and Blazor work, it's the best to use the Microsoft document, although the docuement/blog from microsoft is good too. Learn the syntax from microsoft, try to understand why the syntax is designed like that, try to know what's problem it's solved. From microsoft blog, try to understand and learn how to use those function.
5 replies
ASP.NET Controller API + Blazor Client UI resources and help
And about your question, I was used Telerik library for component in application. I think it quite useful. But I think you will need to understand about the frontend, how to design to generate those components multiple time but still make sense when viewing in client side.
5 replies
I need help to my tic-tac-toe code, which is meeting error when try to run test
I want to keep this post a little longer, until I think I know someone will share what am I feeling right now. It's hard to accept that you cannot complete what you have done. My heart feel so strange at this point. Future is so dark and calm. Hope you don't read this message.
45 replies
I need help to my tic-tac-toe code, which is meeting error when try to run test
At this point, I'm thinking about give up. I don't know what really the issue here. I think i will add it to my cv and note that it isn't complete. Hope the recruiter will accept that.
45 replies
I need help to my tic-tac-toe code, which is meeting error when try to run test
Yes, i understand. For new, i have fixed the error that i posted. Now I struggling with an other error, not runtime but the semantics, I think. The code don't give me expected result.
45 replies
I need help to my tic-tac-toe code, which is meeting error when try to run test
Now when I try to run the test, i get blue screen window with code about memory management. In my calculation, the tree will be expanded with 543 node because there is 4 moves was played and for each played move, the next possible move reduce by 1 and I only design so that the height of tree won't pass (3-2)*2+1=2 height which 3 is the number of moves need to complete a line and that formula is needed move to look ahead to block any fork move in future. I design the computer so it can only look that far.
45 replies
I need help to my tic-tac-toe code, which is meeting error when try to run test
In the new code, I design it so that the Growth method only be called iff _predictedNextMoves field is null which also mean _predictedNextMove isn't completely initialized. (Sr, my eng is bad)
45 replies
I need help to my tic-tac-toe code, which is meeting error when try to run test
Yes, i see that too. I realize that in the old code, the get method of property PredictedNextMoves have call to another method call Growth which call to get method of PredictedNextMoves property. This is the reason why the old code meet the stackoverflow error.
45 replies