Reko.Core.Serialization.ProjectSaver.SerializeIndirectJump C# (CSharp) Méthode

SerializeIndirectJump() private méthode

private SerializeIndirectJump ( UserIndirectJump>.KeyValuePair de ) : IndirectJump_v4
de UserIndirectJump>.KeyValuePair
Résultat IndirectJump_v4
        private IndirectJump_v4 SerializeIndirectJump(KeyValuePair<Address, UserIndirectJump> de)
        {
            return new IndirectJump_v4
            {
                InstructionAddress = de.Key.ToString(),
                TableAddress = de.Value.Address.ToString(),
                IndexRegister = de.Value.IndexRegister.Name,
            };
        }