Xperia Play Unboxing & Thumbs On! (The Playstation Phone)
http://www.youtube.com/watch?v=Z7bJQOFRNoU
I have created this blog to help programmers who have just started their career thats why I have written all the tutorials from practical approach rather then theoretical. If anyone has any query related to programming don't hesitate to ask. My contact information is in my profile. Also I would like to thank all the websites/Individual(s) from whom I gathered the material.
DataTable NewDataTable= OriginalDataTable.Clone();//This Line Creates new Table with the same structure as the old table
for(int i=0;i<OriginalDataTable.Rows.Count;i++)
{
NewDataTable.ImportRow(OriginalDataTable.Rows[i]);//This line copy's the row into new table
}