You can view both columns and data in the reader , as shown below:
To view the columns : quick view for the reader> View results> [0], 1 .. [expand any index]> Non-public participants> _schemainfo> [0], 1 ... [expand any index], this will show the column name and data type.
To view the columns : quick view for the reader> View results> [0], 1 .. [expand any index]> Non-Public members> _values> [0], 1 ... [expand any index], this will show your data in columns.
Edit : Column Information 
View data for columns 
Update: data can also be seen below:
if (reader.HasRows) { while (reader.Read()) { int Id = Convert.ToInt32(reader["ID"]); string Name = Convert.ToString(reader["Name"]); } }
thanks
source share