強制轉型---陣列篇
一般來說,單一的變數容易做強制轉換型別。但是整個陣列就很難了。 查到可以用Convertall來進行。下方為例: int[] numberInt=new int[3]; double[] numberDouble; numberDouble= Array.ConvertAll(numberInt, new Converter(IntToDouble)); public static double IntToDouble(int s) { double rtn=(double)s; return rtn; }