PdfRpt.DataSources.AnonymousTypeListDataSource.Rows C# (CSharp) 메소드

Rows() 공개 메소드

The data to render.
public Rows ( ) : IEnumerable>
리턴 IEnumerable>
        public IEnumerable<IList<CellData>> Rows()
        {
            if (_listOfRows == null) yield break;

            foreach (var item in _listOfRows)
            {
                var list = new DumpNestedProperties().DumpPropertyValues(item, string.Empty, _dumpLevel);
                yield return list;
            }
        }
AnonymousTypeListDataSource