问题
当试图进入运行模式时,收到了以下的错误信息:
error CS0428: Cannot convert method group `__' to non-delegate type `__'
Consider using parentheses to invoke the method
原因
当把方法组转换为非委托类型或者调用方法时缺少括号,就会导致CS0428错误。
示例中显示的错误:
error CS0428: Cannot convert method group `GetComponent' to non-delegate
type `EnemyScript'. Consider using parentheses to invoke the method
解决方案
在正确的地方添加括号就可以解决CS0428错误。
更多信息
https://msdn.microsoft.com/en-us/library/02dw211c(v=vs.90).aspx