C
chcw
Unregistered / Unconfirmed
GUEST, unregistred user!
定义字符串资源如下:
resourcestring
s = 'Cannot allocate memory';
在使用时,用
EOutOfMemory.CreateRes(@s);
或者
EOutOfMemory.Create(s);
在编译时都不会出错,请问这两种用法有什么不同?
resourcestring
s = 'Cannot allocate memory';
在使用时,用
EOutOfMemory.CreateRes(@s);
或者
EOutOfMemory.Create(s);
在编译时都不会出错,请问这两种用法有什么不同?