Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ElementInit.cs
Go to the documentation of this file.
4
6
7public sealed class ElementInit : IArgumentProvider
8{
9 public MethodInfo AddMethod { get; }
10
12
14
20
22 {
23 return Arguments[index];
24 }
25
26 public override string ToString()
27 {
29 }
30
32 {
33 if (arguments == Arguments)
34 {
35 return this;
36 }
38 }
39}
ReadOnlyCollection< Expression > Arguments
ElementInit(MethodInfo addMethod, ReadOnlyCollection< Expression > arguments)
Expression GetArgument(int index)
ElementInit Update(IEnumerable< Expression > arguments)
static string ElementInitBindingToString(ElementInit node)
static ElementInit ElementInit(MethodInfo addMethod, params Expression[] arguments)