3 implementations of ArrayLength
ILCompiler.Compiler (3)
Compiler\TypePreinit.cs (3)
3315public int ArrayLength => throw new NotSupportedException(); 3410public int ArrayLength => Length; 3577public int ArrayLength => throw new NotSupportedException();
2 references to ArrayLength
ILCompiler.Compiler (2)
Compiler\DependencyAnalysis\SerializedFrozenObjectNode.cs (2)
46? _data.Type.Context.Target.PointerSize * 2 + ((ArrayType)_data.Type).ElementType.GetElementSize().AsInt * _data.ArrayLength 49public override int? ArrayLength => _data.Type.IsArray ? _data.ArrayLength : null;