Help shape the future of CMS PaaS release notes! Take this quick survey and share your feedback.
AI OnAI Off
Help shape the future of CMS PaaS release notes! Take this quick survey and share your feedback.
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: