Ejemplo n.º 1
0
        public static Action2 CreateAction2(MethodInfo method)
        {
            if (method == null)
            {
                throw new ArgumentNullException(nameof(method));
            }

            return(m_Cache2b.GetOrAdd(method, x => InternalAccelerator.CreateAction2(method)));
        }