Tagged Questions
3
votes
6answers
1k views
How do you initialise a const array of TGUID from Interface type data, in Delphi?
I want to initialise an array like this -
Const MyArray : Array[0..0] Of TGUID = (IInterface);
But it results in -
[DCC Error] Test.pas(10): E2010 Incompatible types: 'TGUID' and 'string'
So to ...