Search code examples
c#.netuwpconvertersconvertall

Converter And ConvertAll alternative for UWP C#


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 ?


Solution

  • 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.