Code Bye

方法报错,无法将方法组“myProcess”转换为非委托类型“System.IntPtr”。能否希望调用方法

        private static string myProcess(string str)
        {
            byte[] buffer = Convert.FromBase64String(str);
            return "123";
        }
        private void btnTest_Click(object sender, EventArgs e)
        {
                            bool OK= getStr(new Func<string, string>(null, (IntPtr) myProcess));
//这里报错:无法将方法组“myProcess”转换为非委托类型“System.IntPtr”。能否希望调用方法?
         }

求指导,万分感谢。

解决方案

40

new Func<string, string>(null, (IntPtr) myProcess)改成:new Func<string, string>(myProcess)

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明方法报错,无法将方法组“myProcess”转换为非委托类型“System.IntPtr”。能否希望调用方法