convert Decimal array to Double array
What's an efficient and hopefully elegant incantation to convert 开发者_如何学Cdecimal[]
to double[]
?
I'm working with some fairly large arrays.
double[] doubleArray = Array.ConvertAll(decimalArray, x => (double)x);
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();
精彩评论