Version: Unity 6 Preview (6000.0)
LanguageEnglish
  • C#

QueryEngine<T0>.RemoveOperator

Declaration

public void RemoveOperator(string op);

Parameters

op The operator identifier.

Description

Removes a custom operator that was added on the QueryEngine.

// Remove an operator based on its token
var operatorToken = "%";
queryEngine.RemoveOperator(operatorToken);