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