S
SmallGhost
Unregistered / Unconfirmed
GUEST, unregistred user!
定义了一个结构:
type
TDatasourcesType = record
m_strName: string;
m_iNodeValue: integer;
end;
接下来想定义一个TDatasourcesType的数组常量,并对他进行初始化,应该怎么写呀!
const
defDatasourcesType: array[0..1] of TDatasourcesType =
(
(????),(????)
);
type
TDatasourcesType = record
m_strName: string;
m_iNodeValue: integer;
end;
接下来想定义一个TDatasourcesType的数组常量,并对他进行初始化,应该怎么写呀!
const
defDatasourcesType: array[0..1] of TDatasourcesType =
(
(????),(????)
);