I am getting datarowview through the following code
DataRowView s = grdSampleData.GetRow(grdSampleData.FocusedRowHandle) as DataRowView;
how can i check here that all values in s.Row.ItemArray is distinct. If value is null or empty string it should skip the distinct nature ie there can be multiple null values or empty string in ItemArray but no other same values.