Link to home
Start Free TrialLog in
Avatar of Kekosavar
Kekosavar

asked on

Csharp Generic List Problem

Hi dear Guru's. First of all sry about my english.
My problem is , i got a 2 generic lists
public class List1
    {
        public string Tag { get; set; }
        public byte[] Resim1 { get; set; }
        public byte[] Resim2 { get; set; }

    }

    public class List2
    {
        public string Tag { get; set; }
        public byte[] Resim { get; set; }
    }

Open in new window


I need to copy List1 items to List2...How i can do it ? ty for ur interest
ASKER CERTIFIED SOLUTION
Avatar of ste5an
ste5an
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial