Autor Beitrag
fablio
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 21

WIN XP
D7 Ent
BeitragVerfasst: Do 08.05.03 15:25 
Hallo Leute
Ich habe ein Problem und zwar möchte ich Konstanten in zweidimensionalen Arrays definieren:
ausblenden Quelltext
1:
2:
type TPMensch = array[1..16, 1..2] of integer;
const cPMensch = ? : TPMensch;

danke!
Udontknow
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 2596

Win7
D2006 WIN32, .NET (C#)
BeitragVerfasst: Do 08.05.03 15:55 
Hi!

Hier ein abgewandeltes Beispiel:

ausblenden Quelltext
1:
2:
  type TPMensch = array[1..2, 1..3] of integer;
  const cPMensch : TPMensch=((2,3,5),(4,5,6));


Cu,
Udontknow