Microsoft.CSharp.RuntimeBinder.Semantics.EXPRCONCAT
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal class EXPRCONCAT : EXPR
{
public EXPR FirstArgument;
public EXPR SecondArgument;
public EXPR GetFirstArgument();
public void SetFirstArgument(EXPR value);
public EXPR GetSecondArgument();
public void SetSecondArgument(EXPR value);
public EXPRCONCAT();
}
}