| 1 | @{ |
| 2 | Type t = Model.EventInfo.EventHandlerType; |
| 3 | Type [] eventArgs = t.GetMethods().Where((methodInfo) => { return (methodInfo.Name == "Invoke"); }).First().GetParameters().Select<System.Reflection.ParameterInfo, Type>((pi) => { return pi.ParameterType; }).ToArray(); |
| 4 |
nothing calls this directly
no test coverage detected