Converter And ConvertAll alternative for UWP C#

593 Views Asked by At

I am creating an app in UWP and actually noticed that the System.Converter and Array.ConvertAll functions doesn't exist in there... Why ? :/

Is there any way I could get them ?

1

There are 1 best solutions below

8
On BEST ANSWER

As you said, in UWP there is no System.Converter and Array.ConvertAll. You can however use the LINQ method Select to do the same work.