Question: Create an immutable version of this class. Keep all methods. public class Game { private int ID; private string PlayerName; public Game(int ID, string PlayerName)

Create an immutable version of this class. Keep all methods. public class Game { private int ID; private string PlayerName; public Game(int ID, string PlayerName) { this.ID = ID; this.PlayerName = PlayerName; public void ChangePlayerName (string NewName) { this.PlayerName = NewName; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
