Where does TPath write from System.IOUtils?

The TPath entry has a TPath.Create class constructor that initializes the vars classes. But I can not find any unit where TPath.Create is used / called dispite that all the vars have the correct values ​​(TPath.PathSeparator, ...).

+5
source share
1 answer

Class constructors are called automatically by the initialization code that Delphi produces. Class constructors are called during the initialization section of the device in which they are declared.

This is described in more detail in the documentation :

- , . , . , , . , , , .

, , DCU Debug, .

+10

All Articles