Possible Duplicate:
C#, int or Int32? Should I care?
Please any one let me know MSIL of System.Int32 and int will be same or different, If different then which one we should use.
Edit:
this won't compile
public enum MyEnum : Int32
{
AEnum = 0
}
but this will
public enum MyEnum : int
{
AEnum = 0
}