1) Int32 Structure
- Represents a 32-bit signed integer. (4 bytes)
- Namespace: System
- Assembly: mscorlib (in mscorlib.dll)
2) Byte Structure
- Represents an 8-bit unsigned integer. (1 byte)
- Namespace: System
- Assembly: mscorlib (in mscorlib.dll)
- Range: 0 to 255
[SerializableAttribute]
[ComVisibleAttribute(true)]
public struct Int32 : IComparable, IFormattable,
IConvertible, IComparable<int>, IEquatable<int>
[SerializableAttribute]
[ComVisibleAttribute(true)]
public struct Byte : IComparable, IFormattable,
IConvertible, IComparable<byte>, IEquatable<byte>