How to change VCL code?

后端 未结 4 1287
时光说笑
时光说笑 2021-01-13 10:38

I need (to make some quick and dirty tests) to modify the code of Variants and SysUtils.

What I need to do to \"compile\" the changes?

4条回答
  •  有刺的猬
    2021-01-13 11:17

    Delphi runtime DCUs are precompiled. It would be a waste of time to compile them at every build.

    If the code you are trying to modify is a method of a built-in class, then a class helper may help:

    http://docwiki.embarcadero.com/RADStudio/en/Class_and_Record_Helpers

    So the question is which part of code do you want to modify in the runtime?

提交回复
热议问题