L
liyijincom
Unregistered / Unconfirmed
GUEST, unregistred user!
如下代码有什么问题?直接读值是可以的,但是却读节点有问题,执行的时候报错
会不会是Str的初始化问题?由于时间比较急,没办法去试,请高手指点一二
function GetSectionFromIni(const FileName:String):TStrings;
var
IniFile: TIniFile;
Str:TStrings;
begin
Str:=nil;
if FileExists(FileName) then
begin
IniFile:=TIniFile.Create(FileName);
IniFile.ReadSections(Str);
IniFile.Free;
end;
result:=Str;
Str.Free;
end;
会不会是Str的初始化问题?由于时间比较急,没办法去试,请高手指点一二
function GetSectionFromIni(const FileName:String):TStrings;
var
IniFile: TIniFile;
Str:TStrings;
begin
Str:=nil;
if FileExists(FileName) then
begin
IniFile:=TIniFile.Create(FileName);
IniFile.ReadSections(Str);
IniFile.Free;
end;
result:=Str;
Str.Free;
end;