how to split datatable into multiple datatable based on row count in C#
.Please give the suggestion to me
.
MySqlDataAdapter da = new MySqlDataAdapter("", con);
da.SelectCommand.Parameters.AddWithValue("@sid", specializationId);
da.SelectCommand.Parameters.AddWithValue("@uid", userId);
da.SelectCommand.Parameters.AddWithValue("@counter", counter);
da.Fill(dt);