Cannot convert from 'method group' to 'System.Action' error
Clash Royale CLAN TAG #URR8PPP Cannot convert from 'method group' to 'System.Action<object>' error I have created the following function: public void DelegatedCall(Action<Object> delegatedMethod) And defined the following method public void foo1(String str) { } However, when I try to call DelegateCall with foo1 : DelegateCall foo1 DelegatedCall(foo1); ...I get the following compiler error: Argument 1: cannot convert from 'method group' to 'System.Action<object>' Argument 1: cannot convert from 'method group' to 'System.Action<object>' What is the reason for this error and how can I correct it? Unfortunately, casting foo1 to Action is not an option. foo1 Action Related: What is a method group in C#? – DavidRR Jun 10 '16 at 12:57 3 A...