寻
寻路
Unregistered / Unconfirmed
GUEST, unregistred user!
interface
type
TExcpCount = 0..1;
type
TScoketException = packed record
ErrCode: Integer;
ErrText: string;
end;
TScoketExceptionLists = array [TExcpCount] of TScoketException;
const
ScoketExceptionLists: TScoketExceptionLists = ( ( (1), ('10') ), ( (2), ('20') ) )
//这里不行
type
TExcpCount = 0..1;
type
TScoketException = packed record
ErrCode: Integer;
ErrText: string;
end;
TScoketExceptionLists = array [TExcpCount] of TScoketException;
const
ScoketExceptionLists: TScoketExceptionLists = ( ( (1), ('10') ), ( (2), ('20') ) )
//这里不行