What is a good substitute for a big switch-case?
You can store country-power pairs into a Dictionary<string, int> then just get the score of a particular country by using indexer: var points = new Dictionary<string,int>(); // populate the dictionary… var usa = points[“USA”]; Edit: As suggested in comments you should store the information in external file, for example an xml would be a good … Read more