Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
MethodBinaryExpression.cs
Go to the documentation of this file.
1
using
System.Reflection
;
2
3
namespace
System.Linq.Expressions
;
4
5
internal
class
MethodBinaryExpression
:
SimpleBinaryExpression
6
{
7
private
readonly
MethodInfo
_method
;
8
9
internal
MethodBinaryExpression
(
ExpressionType
nodeType,
Expression
left,
Expression
right,
Type
type
,
MethodInfo
method)
10
: base(nodeType, left, right,
type
)
11
{
12
_method
= method;
13
}
14
15
internal
override
MethodInfo
GetMethod
()
16
{
17
return
_method
;
18
}
19
}
System.Linq.Expressions.Expression
Definition
Expression.cs:5484
System.Linq.Expressions.MethodBinaryExpression.MethodBinaryExpression
MethodBinaryExpression(ExpressionType nodeType, Expression left, Expression right, Type type, MethodInfo method)
Definition
MethodBinaryExpression.cs:9
System.Linq.Expressions.MethodBinaryExpression._method
readonly MethodInfo _method
Definition
MethodBinaryExpression.cs:7
System.Linq.Expressions.MethodBinaryExpression.GetMethod
override MethodInfo GetMethod()
Definition
MethodBinaryExpression.cs:15
System.Linq.Expressions.MethodBinaryExpression
Definition
MethodBinaryExpression.cs:6
System.Linq.Expressions.SimpleBinaryExpression
Definition
SimpleBinaryExpression.cs:4
System.Reflection.MethodInfo
Definition
MethodInfo.cs:7
System.Type
Definition
Type.cs:14
System.Linq.Expressions.ExpressionType
ExpressionType
Definition
ExpressionType.cs:4
System.Linq.Expressions
Definition
AnalyzedTree.cs:3
System.Reflection
Definition
ICustomTypeProvider.cs:1
System.ExceptionArgument.type
@ type
source
System.Linq.Expressions
System.Linq.Expressions
MethodBinaryExpression.cs
Generated by
1.10.0