Friday, May 6, 2011

Xperia Play Unboxing & Thumbs On! (The Playstation Phone)


Xperia Play Unboxing & Thumbs On! (The Playstation Phone)



http://www.youtube.com/watch?v=Z7bJQOFRNoU

Tuesday, May 3, 2011

A Quick Way to Copy a DataRow in C#


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
}