I want to initialise an array like this -
Const MyArray : Array[0..0] Of TGUID = (IInterface);
But it results in -
[DCC Err
If you use a const array you have to set it up with const values like this:
const GuidArray: array[0..0] of TGuid= ('{84DBCC66-72AA-4806-AE28-B55FC5B83FC8}');