I created this helper in order to add some more functions to the string
type:
type
AStringHelper = record helper for string
function Invert: string; overload;
function InvertMe: string; overload;
end;
But when I use it in my code, the TStringHelper
in System.StrUtils
"gets out" and I can't use it's functions.
Is it possible to both of them to coexist?