私は2つのメソッドを宣言しています
public void MethodA(object o, Action<string> action) { }
public void MethodA(object o, Action<CustomType> action) { }
匿名メソッドを使用してこれらの関数を呼び出すにはどうすればよいですか? メソッドにポインターを渡すことができることは知っていますが、匿名メソッドを使用してこれを行うことに興味がありますか? 現在、「Ambitious call between.....」というエラーが表示されます。
MethodA(this, c => { }); // how to explicitly say that C is of type CustomType?