Long
| Class Name | Description | 
|---|---|
| Long.Add | Add long. | 
| Long.Compare | Compare long. | 
| Long.Div | Divide the long. | 
| Long.Mod | Computes the remainder of long. (Result = Value1 % Value2) | 
| Long.Mul | Multiply by long. | 
| Long.Negative | To invert the sign of the long. | 
| Long.Parse | Returns an Long converted from a string. | 
| Long.Sub | Subtract long. | 
| Long.ToFloat | Convert long to float. | 
| Long.ToString | Returns a formatted string of Long. | 
| Long.TryParse | Returns an Long converted from a string. It also returns whether the conversion was successful. |