Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
446 views

Converting a list of ints to a byte array

I tried to use the List.ConvertAll method and failed. What I am trying to do is convert a List<Int32> to byte[] I copped out and went this route but I need to figure out the ConvertAll ...
2
votes
4answers
341 views

why does C# convertall require 2 parameters

I have an array of Car objects I want to conver them to a list of Vehicle objects I thought this would work Vehicle[] vehicles = cars.ConvertAll(car=> ConvertToVehicle(car)).ToArray(); but its ...
1
vote
1answer
605 views

C# - generic List and ConvertAll() Method, how does it internally work?

from some code I found in Sacha Barbers free mvvm framework chinch I saw this: return new DispatcherNotifiedObservableCollection<OrderModel>( ...
1
vote
3answers
443 views

Method chaining generic list extensions

I have a List of a "complex" type - an object with a few string properties. The List itself is a property of another object and contains objects of a variety of types, as shown in this abbreviated ...