Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Hi,
What happens if you change the type from an interface to a concrete implementation of list?
IList<string> ---> List<string>
I am indexing pages which have a base class with an IList<string> property like below:
public virtual IList<string> TagCodes
{
get { return new List<string> { "Shoulder", "Knee", "Video" }; }
}
It gets indexed correctly and looks as following when I do index view: