Monday, December 17, 2007

.NET Framework Type (1) Int32, Byte

1) Int32 Structure

  • Represents a 32-bit signed integer. (4 bytes)
  • Namespace: System
  • Assembly: mscorlib (in mscorlib.dll)
  • Range: -2.14 billion to 2.14 billion (-2,147,483,648 to 2,147,483,647)

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>

blog comments powered by Disqus