Beispiel #1
0
        public static OpcodeEncoder AppendConditionalPrefix(this OpcodeEncoder encoder, byte value, bool include)
        {
            if (include)
            {
                encoder.AppendByte(value);
            }

            return(encoder);
        }
Beispiel #2
0
 public static OpcodeEncoder AppendImmediate(this OpcodeEncoder encoder, byte value)
 {
     return(encoder.AppendByte(value));
 }