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

public static TypeMismatchInBinop ( int op, Type type1, Type type2 ) : Exception
op int
type1 Type
type2 Type
Результат Exception
Пример #1
0
 internal void SetTypeMismatchError(int op, Type left, Type right)
 {
     throw ExprException.TypeMismatchInBinop(op, left, right);
 }