コード例 #1
0
 public static bool IsRegistered(MathOperationType operationType, params Type[] operandTypes) =>
 !(Get(operationType, operandTypes) == null);
コード例 #2
0
 public static MathOperation Get(MathOperationType operationType, params Type[] operandTypes) =>
 GetAll(operandTypes).Find(o => o.OperationType == operationType);