Common approach in handling functions of two variables is to express this function in polar coordinate system. For example, in the classic example $$f(x,y)=\left\{\begin{array}{lr}\frac{xy}{x^2+y^2} & (x,y)\neq (0,0)\\0 & \text{otherwise}\end{array}\right.$$ say $x=r\cos(\phi)$ and $y=\sin(\phi)$, and then we can write $f(r, \phi)=\frac{r^2\sin(\phi)\cos(\phi)}{r^2(\cos^2(\phi) + \sin^2(\phi))}=\frac{1}{2}\sin(2\phi)$. Now if we let $r\rightarrow 0$, then it and, for example, $\phi=\frac{\pi}{4}$, the $$\lim_{r\rightarrow 0}f(r, \frac{\pi}{4})=\frac{1}{2}\neq 0$$ so $f$ isn't continuous in $(0,0)$.
Now I am given a function $$f(x,y)=(x+y)\exp(xy)$$Since this function is composition of continuous functions, it must be continuous, but I wanted to ask in common: earlier I used polar coordinates to tell that the function isn't continuous, so can I use the same approach to say that function is continuous, that is: $$\lim_{r\rightarrow0}f(r,\phi)=\lim_{r\rightarrow0}r(\cos(\phi)+\sin(\phi))\exp(r^2\sin(\phi)\cos(\phi))=0$$ so function must be continuous, or is it not enough?
Thank you in advance!