Converts the input character to a lower case character
Namespace: HelperFunctions
Delphi |
function RSToLower( const C: Char ): Char; inline; |
Parameters
C
Type: Char
Type: Char
This function is useful when writing code that supports different versions of Delphi as you do not need which unit to include or change the code from ToLower(C) to C.ToLower for later versions of Delphi. |