Create() public static method

public static Create ( Type type ) : Instruction
type System.Type
return Instruction
コード例 #1
0
 public void EmitSub(Type type, bool @checked)
 {
     if (@checked)
     {
         Emit(SubOvfInstruction.Create(type));
     }
     else
     {
         Emit(SubInstruction.Create(type));
     }
 }
コード例 #2
0
ファイル: InstructionList.cs プロジェクト: zhiliangxu/corefx
 public void EmitSub(Type type, bool @checked)
 {
     Emit(@checked ? SubOvfInstruction.Create(type) : SubInstruction.Create(type));
 }