¡@

Home 

c# Programming Glossary: colz

Inner join of DataTables in C#

http://stackoverflow.com/questions/665754/inner-join-of-datatables-in-c-sharp

s with following fields T1 CustID ColX ColY T2 CustID ColZ I need the joint table TJ CustID ColX ColY ColZ How this can.. T2 CustID ColZ I need the joint table TJ CustID ColX ColY ColZ How this can be done in C# code in a simple way Thanks. c#.. dt2.Columns.Add CustID typeof int dt2.Columns.Add ColZ typeof int for int i 1 i 5 i DataRow row dt1.NewRow row CustID..