using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sandbox { partial class Hotload { internal class TestHelper { public static Func GenericMethod( T arg ) { return t => Equals( t, arg ); } } } }