using System;
using System.Collections.Generic;
public class Program
{
private Action<T> _anyAction;
public void Main()
this._anyAction = (ITest param)=>this.delegatedMethod(param);
//this.testMethod((ITest param)=>this.delegatedMethod(param));
}
public void delegatedMethod(ITest param)
public void testMethod<T>(Action<T> param)
public interface ITest