Hello guys it my first time trying c# i am trying to solve this problem and this is what i got so far i dont know where to locate the auto implementation properties to which class i a little bit confused appreciate any help
the question is add below
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace gamesDemo
{
class Game
{
public String gameName;
public int maxPlayer;
static void Main(string[] args)
{
}
public override string ToString()
{
return (GetType() + "" + gameName +"" + maxPlayer );
}
class GameWithTimeLimit : Game
{
}
}
}