2
Answers

A C# recommendation

Kady.

Kady.

9y
410
1
Hey guys, I'm a beginner in C# and I want to hone my skills a little bit. That's why I have an idea of a fairly simple app to kinda keep me motivated and excited to actually learn. I want to make a Premier League football app that calculates and assigns points to every team in the league. For instance if a team wins, 3 points will be assigned to it and the loser gets nothing as for 1 points to both of them if it is a draw. I think that kind of a program has something to do with Arrays or other data structures. So basically what I what I want is suggestions to particular topics in C# to look up and do a little research on in order to get me going to make this program done.
Answers (2)
0
Sujeet Singh
NA 129 0 7y
this is usually means one of two things:
  1. There is some very unusual code path which, when taken, always causes a crash
  2. A race condition exists between threads in your program. Thus, the crash appears unpredictably and may be difficult to reproduce

My advice to you is to start the program in the debugger, and leave it running until the exception is thrown. Then you can come back here and provide us with the relevant code, stack trace, debug output, etc.