| Description |
|
Converts the supplied UnicodeChar to lower case. You can account for culture influences by supplying the Culture parameter (details are beyond the scope of Delphi Basics).
|
| | Notes | Static methods are not methods of an object - they are simply class functions or procedures available at any time.
|
|
| Microsoft MSDN Links |
System
System.Char
|
|
|
| A simple example |
program Project1;
{$APPTYPE CONSOLE}
begin
Console.WriteLine(System.Char.ToLower('A'));
Console.ReadLine;
end.
| | Show full unit code | a
|
| |
|
|
|