| 12345678910111213141516171819202122232425262728293031323334 |
- /**
- * Namespace: System.Web.UI
- * Class: Utils
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Implementation: yes
- * Contact: <[email protected]>
- * Status: ?%
- *
- * (C) Gaurav Vaish (2001)
- */
- using System;
- using System.Reflection;
- namespace System.Web.UI
- {
- internal class Utils
- {
- internal static object InvokeMethod(MethodInfo info, object obj, object[] parameters)
- {
- object retVal = null;
- try
- {
- retVal = info.Invoke(obj, parameters);
- } catch(TargetInvocationException tie)
- {
- throw tie.InnerException;
- }
- return retVal;
- }
- }
- }
|