1 write to ArrayElementType
System.Workflow.Activities (1)
Rules\Expressions.cs (1)
1941
newType.
ArrayElementType
= CloneType(oldType.ArrayElementType);
22 references to ArrayElementType
System (9)
compmod\microsoft\csharp\csharpcodeprovider.cs (3)
3336
while(baseTypeRef.
ArrayElementType
!= null) {
3337
baseTypeRef = baseTypeRef.
ArrayElementType
;
3349
typeRef = typeRef.
ArrayElementType
;
compmod\microsoft\visualbasic\VBCodeProvider.cs (6)
1011
if (typeRef.
ArrayElementType
!= null) {
1013
s = GetArrayPostfix(typeRef.
ArrayElementType
);
1669
if (typeRef.
ArrayElementType
!= null)
1670
OutputArrayPostfix(typeRef.
ArrayElementType
);
2732
while( typeRef.
ArrayElementType
!= null) {
2733
typeRef = typeRef.
ArrayElementType
;
System.Management (1)
WmiGenerator.cs (1)
1247
cmp.Type.ArrayRank > 0 && cmp.Type.
ArrayElementType
.BaseType == new CodeTypeReference(PublicNamesUsed["BaseObjClass"].ToString()).BaseType)
System.Workflow.Activities (6)
Common\CompModHelpers.cs (3)
702
return TypesEqual(typeLeft.
ArrayElementType
, typeRight.GetElementType());
713
return TypesEqual(typeLeft.
ArrayElementType
, typeRight.
ArrayElementType
);
Rules\CodeDomDecompiler.cs (1)
266
typeRef = typeRef.
ArrayElementType
;
Rules\Expressions.cs (1)
1941
newType.ArrayElementType = CloneType(oldType.
ArrayElementType
);
Rules\RuleValidation.cs (1)
3768
arrayTypeRef = arrayTypeRef.
ArrayElementType
;
System.Workflow.ComponentModel (6)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
945
typeName.Append(GetTypeNameFromCodeTypeReference(codeTypeReference.
ArrayElementType
, declaringType));
AuthoringOM\Serializer\CodeTypeReferenceSerializer.cs (2)
115
if (reference.
ArrayElementType
!= null)
118
result = new StringBuilder(ConvertTypeReferenceToString(reference.
ArrayElementType
));
Shared\CompModHelpers.cs (3)
700
return TypesEqual(typeLeft.
ArrayElementType
, typeRight.GetElementType());
711
return TypesEqual(typeLeft.
ArrayElementType
, typeRight.
ArrayElementType
);