DelphiBasics
  Home  |  Delphi .net Home  |  System NameSpace
 .NET Framework
 Namespace References

 System
 
  Array  Class 
  Boolean  Structure 
  Buffer  Class 
  Byte  Structure 
  Char  Structure 
  Console  Class 
  Convert  Class 
  DateTime  Structure 
  DayOfWeek  Enumeration 
  Decimal  Structure 
  Double  Structure 
  Enum  Class 
  Environment  Class 
  Exception  Class 
  ICloneable  Interface 
  Int16  Structure 
  Int32  Structure 
  Int64  Structure 
  Math  Class 
  Object  Class 
  OperatingSystem  Class 
  Random  Class 
  SByte  Structure 
  Single  Structure 
  String  Class 
  TimeSpan  Structure 
  UInt16  Structure 
  UInt32  Structure 
  UInt64  Structure 
  Version  Class 
 System.Collections
 System.Globalization
 System.IO

 Articles and Tutorials

 Overview of .NET
 Delphi and .NET
 Winform Applications
 ASP .Net Applications
 php Web Services
 Framework Collections
 Framework String Handling
 Framework Files and Folders


 
 
  System.Int16 Structure
 
 Description
The Int16 structure holds integer values from -32768 to 32767.
 
Note that when converting to hexadecimal, the values are always expressed as positive values - no sign is used. This shows as follows :
 
-2 = xFFFE
 
-1 = xFFFF
 
+0 = x0000
 
+1 = x0001
 
+2 = x0002
 Methods
CompareTo  Compares the current Int16 value to another
Equals  Determines if the current Int16 equals another
Parse  Converts a string representation of a Int16 into a Int16 value
ToString  Converts the current Int16 value to a string

 Fields
MinValue  Integer  Smallest possible value : -32768 (0x8000 in hex)
MaxValue  Integer  Largest possible value : 32767 (0x7FFF in hex)

 Microsoft MSDN links
 
System
System.int16
 
Delphi Programming © Neil Moffatt . All rights reserved.  |  Home Page