(New to C#) I am creating a jagged array form in C# as shown below, then pass it to form 2:
// Answers jagged array that is declared in form 1
private Question[][] _answers;
The following code is what I am using to create the second form and pass array to it:
//Code to pass all elements of array to new array in form 2
Question[][] DisplayAnswers = new Question[1][];
//Code for new form2
ResultsForm resultsForm = new ResultsForm();
//Code for dialog results from form 2
DialogResult dialogResult = resultsForm.ShowDialog();
Am I passing the array correctly?