25 lines
714 B
C#
25 lines
714 B
C#
using System;
|
|
|
|
namespace System.Runtime.Serialization
|
|
{
|
|
// Token: 0x02000486 RID: 1158
|
|
internal class MultiArrayFixupRecord : BaseFixupRecord
|
|
{
|
|
// Token: 0x06002C1F RID: 11295 RVA: 0x000915A4 File Offset: 0x0008F7A4
|
|
public MultiArrayFixupRecord(ObjectRecord objectToBeFixed, int[] indices, ObjectRecord objectRequired)
|
|
: base(objectToBeFixed, objectRequired)
|
|
{
|
|
this._indices = indices;
|
|
}
|
|
|
|
// Token: 0x06002C20 RID: 11296 RVA: 0x000915B8 File Offset: 0x0008F7B8
|
|
protected override void FixupImpl(ObjectManager manager)
|
|
{
|
|
this.ObjectToBeFixed.SetArrayValue(manager, this.ObjectRequired.ObjectInstance, this._indices);
|
|
}
|
|
|
|
// Token: 0x04001111 RID: 4369
|
|
private int[] _indices;
|
|
}
|
|
}
|