So say I have a collection of Bloops
Class Bloop Public FirstName Public LastName Public Address Public Number Public OtherStuff End Class <
Class Bloop Public FirstName Public LastName Public Address Public Number Public OtherStuff End Class
List myBloops = new List; //populate myRazzies List myRazzies = myBloops.Select(x => new Razzie() { FirstName = x.FirstName, LastName = x.LastName}).ToList();