i have sql command and I save values into datatable.
con.Open();
cmd0.CommandText = "Select ......";
DataTable dtbl = new DataTable();
dtbl.Load(cmd0.ExecuteReader());
And i have value String Name. I need to know, if the value in String Name is in the datatable dtbl...It is possible?