Question by 
               DennisseCC · Mar 26, 2017 at 10:13 AM · 
                textlistdisplay  
              
 
              How to display the text from list?
How to display all the questions and answer on it?
public class GameManager : MonoBehaviour { public Question[]questions; private static ListunansweredQuestions; private Question currentQuestion; }
[System.Serializable] public class Question { public string questionText; public Answer[] answers; }
[System.Serializable] public class Answer { public string answerText; public bool isTrue; }
               Comment
              
 
               
              Your answer