I have two similar[all attributes are same.] structures within different namespaces.
Now when i try to copy values between the objects of these structures i am getti
Use AutoMapper.
Mapper.CreateMap(); My.NS1.Structure struct1; My.NS2.Structure struct2 = (My.NS2.Structure) Mapper.Map(struct1);