tags:

views:

15

answers:

1

I was reading: http://stackoverflow.com/questions/2794831

But I have give a compilation error:

CS0246: The type or namespace name 'DataTable' could not be found (are you missing a using directive or an assembly reference?)

How do I fix this?

+1  A: 

add a reference at the top of the class.

using System.Data;
Adeel