Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
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: