Class MatchingList
A matching list is an array of matching pairs. It is use only in exam questions where Type = Matching.
public class MatchingList
- Inheritance
-
MatchingList
- Inherited Members
- Extension Methods
Constructors
MatchingList()
Constructs an empty list.
public MatchingList()
Properties
Distractors
Additional (and optional) answers, all of which are incorrect. Students see a randomized list that includes these distractors with the correct answers in the Matching right-side fields.
public List<ContentTitle> Distractors { get; set; }
Property Value
IsEmpty
If there are no pairs then the list is empty.
public bool IsEmpty { get; }
Property Value
Pairs
The list of matching left/right pairs in the array.
public List<MatchingPair> Pairs { get; set; }
Property Value
Methods
Clone()
public MatchingList Clone()
Returns
Equals(MatchingList)
public bool Equals(MatchingList other)
Parameters
otherMatchingList
Returns
ShouldSerializeDistractors()
public bool ShouldSerializeDistractors()
Returns
ShouldSerializePairs()
public bool ShouldSerializePairs()
Returns
ShouldSerializePoints()
public bool ShouldSerializePoints()