How can I compare Two List Objects In C# Using Linq or Anything
First List Object First Element Should compare only with second List Object First Element i.e.,
List<ActualAddress> aAddress=new List<ActualAddress>
List<CurrentAddress> cAddress=new List<CurrentAddress>
//How can I Compare n number Of Elements Of Both The Objects Frist Element In a Simple Format
aAddress.Address1[0]==cAddress.Address1[0];
aAddress.Address1[1]==cAddress.Address1[1];
aAddress.Address1[2]==cAddress.Address1[2];
------ ------- ------ -----
------- -------- ----- -----
aAddress.Address1[n]==cAddress.Address1[n];
please help me...