Accord.Controls.DataGridBox.Show C# (CSharp) Method

Show() public static method

Displays a Data Grid View with the specified data.
public static Show ( Array array, String title = null, object rowNames = null, object colNames = null ) : DataGridBox
array Array The array to be displayed.
title String The title for the data window.
rowNames object A collection of row names to be displayed.
colNames object A collection of column names to be displayed.
return DataGridBox
        public static DataGridBox Show(Array array, String title = null,
            object[] rowNames = null, object[] colNames = null)
        {
            return show(new ArrayDataView(array, columnNames: colNames, rowNames: rowNames), title);
        }

Same methods

DataGridBox::Show ( DataTable table ) : DataGridBox
DataGridBox::Show ( object source, string title = null ) : DataGridBox