Answer the question
In order to leave comments, you need to log in
How to make an ASC.NET C# test generator?
I need to make a test generator, that is, the input of questions and answer options, for its further passing of the created test by the user.
Can someone send materials or links to examples of creating such a test generator?
Answer the question
In order to leave comments, you need to log in
It's easier to do it yourself.
class Question {
List<Answer> Answers { get; set; }
}
class Answer {
string Text;
bool isValid;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question