Why Int32 use int in its source code ? Does Int32 int match in c #? So what is the source code for int ? I'm confused.
[Serializable] [System.Runtime.InteropServices.StructLayout(LayoutKind.Sequential)] [System.Runtime.InteropServices.ComVisible(true)] #if GENERICS_WORK public struct Int32 : IComparable, IFormattable, IConvertible , IComparable<Int32>, IEquatable<Int32> /// , IArithmetic<Int32> #else public struct Int32 : IComparable, IFormattable, IConvertible #endif { internal int m_value; // Here???? public const int MaxValue = 0x7fffffff; public const int MinValue = unchecked((int)0x80000000); ... }
there is the same problem between Boolean and bool too.
source share