Preview:
var gridRows = form./*some grid*/.GetDataSource</*some model*/>();

// The Extension
public static List<T> GetDataSource<T>(this DevExpress.XtraGrid.GridControl grid)
{
    if ((List<T>)grid.DataSource == null)
        grid.DataSource = new List<T>();

    return (List<T>)grid.DataSource;
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter