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