I want to Concat two expressions for the final expression
Expression>
So I have created expression belwo code
Rather than calling string.Concat(string, string), you could try calling string.Concat(object, object):
string.Concat(string, string)
string.Concat(object, object)
MethodInfo bodyContactMethod = typeof (string).GetMethod("Concat", new[] { typeof(object), typeof(object) });