When a property return type is ArraySegment<T> and properties are auto-generated, an exception is thrown and the control is not displayed.
My example specifically:
public class TestClass{ private readonly ArraySegment<string> _strings; public IReadOnlyList<string> Strings { get { return this._strings; } }}