Horje
get last element of array delphi Code Example
get last element of array delphi
const
  arrDays: array of string = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'];
begin
  ShowMessage(arrDays[Length(arrDays) - 1]);
end;




28

Related
length of string in delphi Code Example length of string in delphi Code Example
Delphi how copy works Code Example Delphi how copy works Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8