Explain syntax of NULLIF in SQL SERVER 2000

NULLIF ( expression , expression )

syntax return a null value if the two of specified expressions are equal.NULLIF returns the first expression if the two expressions are not equal. If the expressions are equal, NULLIF returns a null value of the type of the first expression. NULLIF is equivalent to a searched CASE function in which the two expressions are equal and the resulting expression is NULL.