<div dir="auto"><div><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Ryan Joseph via fpc-pascal <<a href="mailto:fpc-pascal@lists.freepascal.org">fpc-pascal@lists.freepascal.org</a>> schrieb am Di., 10. März 2020, 09:03:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
<br>
> On Mar 10, 2020, at 11:57 AM, Anthony Walter via fpc-pascal <<a href="mailto:fpc-pascal@lists.freepascal.org" target="_blank" rel="noreferrer">fpc-pascal@lists.freepascal.org</a>> wrote:<br>
> <br>
> To demonstrate, if I have MyUnit.pas that defines a string type helper with EndsWith() and an IntToStr() function then consider the following code:<br>
> <br>
> program Test;<br>
> <br>
> uses<br>
>   MyUnit, SysUtils;<br>
> <br>
> begin<br>
>   'hello'.EndsWith('lo'); // invokes MyUnit.TStringHelper.EndsWith()<br>
>   IntToStr(12); // invokes SysUtils.IntToStr()<br>
> end.<br>
> <br>
<br>
I think the problem here may be because SysUtils doesn't enable the mode switch. In that example above I would expect EndsWith to be used from the last unit, that is SysUtils. If you remake the example without SysUtils and define the type helpers in 2 units that both enable multihelpers  does it work correctly?<br></blockquote></div></div><div dir="auto"><br></div><div dir="auto">As Michael said the unit providing the helper has nothing to do with this.</div><div dir="auto"><br></div><div dir="auto">Regards, </div><div dir="auto">Sven </div><div dir="auto"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote></div></div></div>