Types Delphi

type PString = ^String;


Description
The PString type is a pointer to an String value.

Since String is itself a pointer, PString is not of much use.

Related commands
AnsiString A data type that holds a string of AnsiChars
PAnsiString Pointer to an AnsiString value
PWideString Pointer to a WideString value
String A data type that holds a string of characters
WideString A data type that holds a string of WideChars