可能重复:
C#、int 或 Int32?我应该关心吗?
我GetPosition(this)
在MouseMoved event
被触发时使用,因此具有:
Point pt = e.GetPosition(this);
据我所知,以下两种类型转换都有效,但推荐使用哪一种,为什么?
int x = (int)pt.X;
int x = (Int32)pt.X;
可能重复:
C#、int 或 Int32?我应该关心吗?
我GetPosition(this)
在MouseMoved event
被触发时使用,因此具有:
Point pt = e.GetPosition(this);
据我所知,以下两种类型转换都有效,但推荐使用哪一种,为什么?
int x = (int)pt.X;
int x = (Int32)pt.X;