Upload current progress
This commit is contained in:
9
Coding/Delphi/Delphi Prefixes.md
Normal file
9
Coding/Delphi/Delphi Prefixes.md
Normal file
@@ -0,0 +1,9 @@
|
||||
In Delphi (Pascal) there are prefixes for each class and variable declaration this is useful to know where they are from
|
||||
|
||||
| Prefix | Meaning | Example | Context |
|
||||
| ------ | --------- | ------------------------- | ----------------------------------- |
|
||||
| **T** | Type | `TButton`, `TStringList` | Class, Record or Enum definitions |
|
||||
| **L** | Local | `LCount`, `LTempResult` | Variables defined inside a function |
|
||||
| **F** | Field | `FName`, `FID` | Private variables inside a class |
|
||||
| **A** | Argument | `AName`, `AValue` | Parameters passed into a function |
|
||||
| **I** | Interface | `IUnkown`, `ISeralizable` | Interface definitions |
|
||||
Reference in New Issue
Block a user