Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using String Array As Object Argument

So I have a class that has an argument of a string array. What I want to do is store multiple strings to this array that is part of this class. The code looks something like this:

//Class part of it. Class is called "Event"
public class Event
{
   public string[] seats = new string [75];

   public Event(string[] seats)
   {
      this.seats = seats;
   }
}

// the main code that uses "Event" Class

string[] seatnumber = new string[75];
Event show = new Event (seatnumber[]); //And that is where the error comes in. 

Any help would be greatly appreciated!

like image 822
DTR4iN91 Avatar asked May 28 '26 10:05

DTR4iN91


1 Answers

Remove the brackets from seatnumber when putting it in the Event constructor.

For reference.

like image 200
Joe Urc Avatar answered May 31 '26 07:05

Joe Urc