8 references to Bounds
System.Activities (8)
System\Activities\Expressions\ExpressionServices.cs (1)
1437
string error = TryConvertArguments(newArrayExpression.Expressions, newArrayActivity.
Bounds
, newArrayExpression.GetType(), 0, null, throwOnError);
System\Activities\Expressions\NewArray.cs (7)
55
Type[] types = new Type[this.
Bounds
.Count];
56
for (int i = 0; i < this.
Bounds
.Count; i++)
58
Argument argument = this.
Bounds
[i];
73
RuntimeArgument runtimeArgument = new RuntimeArgument("Argument" + i, this.
Bounds
[i].ArgumentType, this.bounds[i].Direction, true);
74
metadata.Bind(this.
Bounds
[i], runtimeArgument);
96
object[] objects = new object[this.
Bounds
.Count];
98
foreach (Argument argument in this.
Bounds
)