CSPspEmu.Core.Cpu.Table.InstructionTable.ID C# (CSharp) Метод

ID() приватный статический Метод

private static ID ( String Name, String BinaryEncoding, String AsmEncoding, AddressType AddressType, InstructionType InstructionType ) : InstructionInfo
Name String
BinaryEncoding String
AsmEncoding String
AddressType AddressType
InstructionType InstructionType
Результат InstructionInfo
        private static InstructionInfo ID(String Name, String BinaryEncoding, String AsmEncoding, AddressType AddressType, InstructionType InstructionType)
        {
            return new InstructionInfo() { Name = Name, BinaryEncoding = BinaryEncoding, AsmEncoding = AsmEncoding, AddressType = AddressType, InstructionType = InstructionType };
        }
InstructionTable