System.Linq.Dynamic.ExpressionParser.GetStaticMethod C# (CSharp) Method

GetStaticMethod() private method

private GetStaticMethod ( string methodName, Expression left, Expression right ) : MethodInfo
methodName string
left Expression
right Expression
return MethodInfo
		private MethodInfo GetStaticMethod(string methodName, Expression left, Expression right)
		{
			return left.Type.GetMethod(methodName, new[] { left.Type, right.Type });
		}
ExpressionParser