2 references to NestedArrayDepth
System.CodeDom (2)
Microsoft\CSharp\CSharpCodeGenerator.cs (1)
244
int nestedArrayDepth = e.CreateType.
NestedArrayDepth
;
src\libraries\Common\src\System\CodeDom\CodeTypeReference.cs (1)
307
internal int NestedArrayDepth => ArrayElementType == null ? 0 : 1 + ArrayElementType.
NestedArrayDepth
;