Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two datatables dt1 and dt2 i copied dt2 into dt1 and clear all rows from dt2.But fact is that data get cleared from both datatables rather than only one. following is the code.

 dt1= dt2
 dt2.Rows.Clear()

here all rows from dt1 also get deleted? is there any better solution.

share|improve this question

1 Answer

up vote 1 down vote accepted

You have to copy the datatable to your new datatable e.g.

dt1= dt2.Copy();
dt2.Rows.Clear();

Currently when you are assigning dt2 to dt1, reference of dt2 is assigned.

share|improve this answer
Thanks this works for me. – eraj Nov 3 '11 at 5:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.