I am making a sports calender which has venues, events and athletes.
basically when I try to run the program, I get the error that "Sport2012.Venue does not contain a constructor that takes 0 arguments.
//Method to add a new Venue to program
public void addVenue(Venue v)
{
m_Venue.Add(new Venue());
}
The code above errors at the m_Venue.Add(new Venue());
public String m_venueName;
public String m_venueAddress;
private List<Event> m_Events;
public Venue(String venueName, String venueAddress)
{
m_venueName = venueName;
m_venueAddress = venueAddress;
m_Events = new List<Event>();
}
The code above shows the constructor for Sport2012.Venue.
Basically do i create a new constructor or alter the first extract
Thanks in advance
Daniel