Lines Matching refs:CreateDelegate
170 var del = (Func<T1, int>) method.CreateDelegate(typeof(Func<T1, int>));
178 var del = (Func<T1, T2>) method.CreateDelegate(typeof(Func<T1, T2>));
185 var del = (Action<T1>) method.CreateDelegate(typeof(Action<T1>));
191 var del = (Func<T1, T2>) method.CreateDelegate(typeof(Func<T1, T2>));
197 var del = (Action<T1, T2>) method.CreateDelegate(typeof(Action<T1, T2>));
203 var del = (Func<T1, bool>)method.CreateDelegate(typeof(Func<T1, bool>));
317 var getFunc = (Func<T1, ExtensionSet<T1>>)prop.GetGetMethod(true).CreateDelegate(typeof(Func<T1, ExtensionSet<T1>>));
319 var getFunc = (Func<T1, ExtensionSet<T1>>)prop.GetMethod.CreateDelegate(typeof(Func<T1, ExtensionSet<T1>>));
325 .CreateDelegate(typeof(Func<ExtensionSet<T1>, bool>));
346 method.CreateDelegate(typeof(Func<int>));