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