61 lines
1.9 KiB
C#
61 lines
1.9 KiB
C#
using System.Linq.Expressions;
|
|
using System.Reflection;
|
|
using System;
|
|
|
|
namespace Harmony
|
|
{
|
|
public static class SymbolExtensions
|
|
{
|
|
/// <summary>
|
|
/// Given a lambda expression that calls a method, returns the method info.
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
/// <param name="expression">The expression.</param>
|
|
/// <returns></returns>
|
|
public static MethodInfo GetMethodInfo(Expression<Action> expression)
|
|
{
|
|
return GetMethodInfo((LambdaExpression)expression);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Given a lambda expression that calls a method, returns the method info.
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
/// <param name="expression">The expression.</param>
|
|
/// <returns></returns>
|
|
public static MethodInfo GetMethodInfo<T>(Expression<Action<T>> expression)
|
|
{
|
|
return GetMethodInfo((LambdaExpression)expression);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Given a lambda expression that calls a method, returns the method info.
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
/// <param name="expression">The expression.</param>
|
|
/// <returns></returns>
|
|
public static MethodInfo GetMethodInfo<T, TResult>(Expression<Func<T, TResult>> expression)
|
|
{
|
|
return GetMethodInfo((LambdaExpression)expression);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Given a lambda expression that calls a method, returns the method info.
|
|
/// </summary>
|
|
/// <param name="expression">The expression.</param>
|
|
/// <returns></returns>
|
|
public static MethodInfo GetMethodInfo(LambdaExpression expression)
|
|
{
|
|
var outermostExpression = expression.Body as MethodCallExpression;
|
|
|
|
if (outermostExpression == null)
|
|
throw new ArgumentException("Invalid Expression. Expression should consist of a Method call only.");
|
|
|
|
var method = outermostExpression.Method;
|
|
if (method == null)
|
|
throw new Exception("Cannot find method for expression " + expression);
|
|
|
|
return method;
|
|
}
|
|
}
|
|
} |