|
Runing the code and am hitting an error in QuestionType.cs when I create a new quiz
The given key was not present in the dictionary.
public IEnumerable GetErrors(string propertyName)
{
return _errors[propertyName];
}
The property is DisplayName.
What could cause this?
|