29 references to Indices
System (3)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
947
foreach(CodeExpression exp in e.
Indices
) {
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
1295
foreach(CodeExpression exp in e.
Indices
) {
compmod\system\codedom\compiler\CodeValidator.cs (1)
730
foreach(CodeExpression exp in e.
Indices
) {
System.Web.Services (4)
System\Web\Services\Description\SoapProtocolImporter.cs (3)
979
((CodeArrayIndexerExpression)value).
Indices
.Add(new CodePrimitiveExpression(count++));
986
((CodeArrayIndexerExpression)value).
Indices
.Add(new CodePrimitiveExpression(count++));
995
((CodeArrayIndexerExpression)value).
Indices
.Add(new CodePrimitiveExpression(0));
System\Web\Services\Description\WebCodeGenerator.cs (1)
411
valueRef.
Indices
.Add(new CodePrimitiveExpression(index));
System.Workflow.Activities (22)
Rules\Expressions.cs (22)
2659
if (arrayIndexerExpr.
Indices
== null || arrayIndexerExpr.
Indices
.Count == 0)
2701
if (arrayIndexerExpr.
Indices
.Count != rank)
2711
for (int i = 0; i < arrayIndexerExpr.
Indices
.Count; ++i)
2713
CodeExpression argExpr = arrayIndexerExpr.
Indices
[i];
2803
for (int i = 0; i < arrayIndexerExpr.
Indices
.Count; ++i)
2804
RuleExpressionWalker.AnalyzeUsage(analysis, arrayIndexerExpr.
Indices
[i], true, false, null);
2823
int actualArgCount = arrayIndexerExpr.
Indices
.Count;
2828
Type argType = execution.Validation.ExpressionInfo(arrayIndexerExpr.
Indices
[i]).ExpressionType;
2829
object argValue = RuleExpressionWalker.Evaluate(execution, arrayIndexerExpr.
Indices
[i]).Value;
2852
if (arrayIndexerExpr.
Indices
== null || arrayIndexerExpr.
Indices
.Count == 0)
2862
RuleExpressionWalker.Decompile(stringBuilder, arrayIndexerExpr.
Indices
[0], null);
2863
for (int i = 1; i < arrayIndexerExpr.
Indices
.Count; ++i)
2866
RuleExpressionWalker.Decompile(stringBuilder, arrayIndexerExpr.
Indices
[i], null);
2877
CodeExpression[] indices = new CodeExpression[arrayIndexerExpr.
Indices
.Count];
2879
indices[i] = RuleExpressionWalker.Clone(arrayIndexerExpr.
Indices
[i]);
2893
if (arrayIndexerExpr.
Indices
.Count != indexerComperand.
Indices
.Count)
2896
for (int i = 0; i < arrayIndexerExpr.
Indices
.Count; ++i)
2898
if (!RuleExpressionWalker.Match(arrayIndexerExpr.
Indices
[i], indexerComperand.
Indices
[i]))