开发者

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();
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜