3 implementations of ArrayLength
ILCompiler.Compiler (3)
Compiler\TypePreinit.cs (3)
3315
public int
ArrayLength
=> throw new NotSupportedException();
3410
public int
ArrayLength
=> Length;
3577
public 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
49
public override int? ArrayLength => _data.Type.IsArray ? _data.
ArrayLength
: null;