Is there a way to add multiple rows with the same content without loop?
The following is the code I am currently using to achieve this.
DataTable dtMessageDetails = new DataTable("Private Message Details");
for (int i = 0; i < 10; i++)
{
dtMessageDetails.Rows.Add("65E6BD38-2806-S15G-9DC5-9DE908333996", 3, 0, "News", "News", Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd")), "Publish", "mes", 0, 0, 0, "null", "null", "Active");
}
And my datatable should looks like

I want to replace loop with some other approach may be LINQ.
forloop). One question - why you need to create datatable with 10000 duplicated rows?