(MethodInfo info)
| 651 | } |
| 652 | |
| 653 | public static bool IsMethodNotImplemented(MethodInfo info) |
| 654 | { |
| 655 | // check for array out parameters, as we currnetly do not support this other then some specific cases |
| 656 | string dummy; |
| 657 | if (IsArrayAsOut(info, out dummy)) |
| 658 | return false; |
| 659 | |
| 660 | if (info.GetParameters().Where(pi => pi.IsOut && pi.ParameterType.IsArray).Count() > 0) |
| 661 | { |
| 662 | return true; |
| 663 | } |
| 664 | |
| 665 | return false; |
| 666 | } |
| 667 | |
| 668 | public static bool IsMethodNotImplemented(dynamic overloadsContainer) |
| 669 | { |