compare two columns contents from two tables
I want to compare two tables column contents if the contents are same show message
the following code only check if records exist
if (dtBu.Rows.Count > 0 && dtConsignee.Rows.Count > 0)
{
showMessage("We have same data");
}