无法将类型为“System.Object[*]”的对象强制转换为类型“System.Object[]”的解决方法

 


        /// 
        /// 将下标为1的数组转换为.Net的数组
        /// 
        /// 
        /// 
        private object[] ConvertArray(Array arr)
        {
            int lb = arr.GetLowerBound(0);
            var ret = new object[arr.GetUpperBound(0) - lb + 1];
            for (int ix = 0; ix < ret.Length; ++ix)
            {
                ret[ix] = arr.GetValue(ix + lb);
            }
            return ret;
        }
object[] os= ConvertArray(ft.Criteria1 as Array);
foreach (object o in os)
{
    MessageBox.Show(o.ToString());
}

将第二段代码中ft.Criteria1改为对应的下标为1的数组

代码参考:https://social.msdn.microsoft.com/Forums/zh-CN/7f4da5a7-1c78-4297-a5a1-76b455c889d5/vsto?forum=visualcshartzhchs

你可能感兴趣的:(.net,c#,excel)