System.Reflection.Emit.OpCodes.TakesSingleByteArgument C# (CSharp) Метод

TakesSingleByteArgument() публичный статический Метод

public static TakesSingleByteArgument ( System inst ) : bool
inst System
Результат bool
        public static bool TakesSingleByteArgument(System.Reflection.Emit.OpCode inst) { throw null; }
    }

Usage Example

 public virtual void Emit(OpCode opcode, Label label)
 {
     label.GetLabelValue();
     this.EnsureCapacity(7);
     this.InternalEmit(opcode);
     if (OpCodes.TakesSingleByteArgument(opcode))
     {
         this.AddFixup(label, this.m_length, 1);
         this.m_length++;
     }
     else
     {
         this.AddFixup(label, this.m_length, 4);
         this.m_length += 4;
     }
 }
All Usage Examples Of System.Reflection.Emit.OpCodes::TakesSingleByteArgument