Using Unity 2018-2017 with same problem on building for net- error CS0117: 'Delegate' does not contain a definition for 'CreateDelegate' This is the method:
private V CreateDelegate<V>(MethodInfo method, Object target) where V : class
{
var ret = (Delegate.CreateDelegate(typeof(V), target, method) as V);
if (ret == null)
{
throw new ArgumentException("Unabled to create delegate for method called " + method.Name);
}
return ret;
}
Building for UWP. Using system.Linq I tryed with "MethodInfo" but maybe some parameters are wrong. This method isn“t available?
Delegatename perhaps overloaded? Try it withSystem.Delegate.... - 500 - Internal Server Error