Delhpi Program Query

I have this method.

constructor TIPCEvent.Create(AOwner: TIPCThread; const Name: string;
Manual: Boolean);
begin
inherited Create(Name, Manual);
FOwner := AOwner;
FSharedMem := TSharedMem.Create(Format(’%s.Data’, [Name]), SizeOf(TIPCEventInfo));
FEventInfo := FSharedMem.Buffer;
end;

I just want to know what “Format(’%s.Data’, [Name])” will return.
Suppose Name is “Sunil”. Whether it will return Sunil.Data or something else…

Thanks for your interest, but this is NOT a Delphi programming forum. Please try http://delphi.about.com/ for your question

Please referance the following thread.

Even though this is NOT a Delphi programming language forum, I CAN help you with this one. You guessed correctly. It will return “Sunil.Data”.

Thanks a lot.