Reputation: 25819
What's an efficient and hopefully elegant incantation to convert decimal[]
to double[]
?
I'm working with some fairly large arrays.
Upvotes: 25
Views: 24211
Reputation: 47
You also can use and extension classes similar to this one
public static class ArrayExtension
{
public static double[] ToDouble(this float[] arr) =>
Array.ConvertAll(arr, x => (double)x);
}
Then:
double[] doubleArr = decimalArr.ToDouble();
Upvotes: 3
Reputation: 269358
double[] doubleArray = Array.ConvertAll(decimalArray, x => (double)x);
Upvotes: 55