Пример #1
0
 /// <summary>Gets the <see cref="Opcode"/> identified by this WORD value.</summary>
 public static Opcode Opcode(this OpcodeValues code)
 {
     return(Majiro.Script.Opcode.ByValue[(ushort)code]);
 }
Пример #2
0
 /// <summary>Gets the standard <see cref="Opcode.Mnemonic"/> from the enum name.</summary>
 public static string Mnemonic(this OpcodeValues code)
 {
     return(code.ToString().ToLower().Replace("_", "."));
 }