The default record-helpers doesn't have that I want.
I relize my own record-helper in example for string:
type
TArhStringHelper = record helper for
string
procedure ReplaceAll(aOldValue: string; aNewValue: string);
procedure ReplaceTags(aUser: TUser);
procedure ReplaceTagCounter(aInt: Integer);
function FromRouterTime: string;
end;
I found the bug in that. My record-helper overrides the default TStringHelper declarated in SysUtils, and I can't use and see it methods.
Then I rewrite record-helper for TStringHelper, but results are the same.
type
TArhStringHelper = record helper for
TStringHelper
procedure ReplaceAll(aOldValue: string; aNewValue: string);
procedure ReplaceTags(aUser: TUser);
procedure ReplaceTagCounter(aInt: Integer);
function FromRouterTime: string;
end;
It's possible to inherite record-helper?