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.SByte Structure
 
 Description
The SByte structure holds integer values from -128 to 127.
 
Note that when converting to hexadecimal, the values are always expressed as positive values - no sign is used. This shows as follows :
 
-2 = x7E
 
-1 = x7F
 
+0 = x00
 
+1 = x01
 
+2 = x02
 Methods
CompareTo  Compares the current SByte value to another
Equals  Determines if the current SByte equals another
Parse  Converts a string representation of a SByte into a SByte value
ToString  Converts the current SByte value to a string

 Fields
MinValue  Integer  Smallest possible value : -128 (0x80 in hex)
MaxValue  Integer  Largest possible value : 127 (0x7F in hex)

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