Possible Duplicate:
C#, int or Int32? Should I care?
I'm using GetPosition(this)
when MouseMoved event
gets triggered so having:
Point pt = e.GetPosition(this);
As far as I see both following type casts work but which one is recommended and why?
int x = (int)pt.X;
int x = (Int32)pt.X;