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

AnonymousTypeListDataSource() 공개 메소드

Converts a list of anonymous type items to an IEnumerable of Pdf Cells Data.
public AnonymousTypeListDataSource ( IEnumerable listOfRows, int dumpLevel = 2 ) : System.Collections
listOfRows IEnumerable list of items
dumpLevel int how many levels should be searched
리턴 System.Collections
        public AnonymousTypeListDataSource(IEnumerable listOfRows, int dumpLevel = 2)
        {
            _listOfRows = listOfRows;
            _dumpLevel = dumpLevel;
        }
AnonymousTypeListDataSource