Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
AW: Offener Parameter-Array mit unterschiedlichen Typen
29. Mär 2011, 13:44
Hallo,
Versuchs mal so:
Delphi-Quellcode:
function MyFunc(AParams: Array of const): Boolean;
begin
// ..
end;
// Aufruf:
if MyFunc([MyObject,123,'Test123',false]) then
// ...
Michael "Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
Geändert von Neutral General (29. Mär 2011 um 13:47 Uhr)
|