LL100
Hungarian notation
Object Pascal — Delphi & Free Pascal
Info
Style
Type-encoding prefixes are redundant in a strongly typed language and reduce readability
type-encoding prefixes are redundant in a strongly typed language and reduce readability.
Why this severity
type-encoding prefixes are redundant in a strongly typed language and reduce readability.
Known false positives
F-prefixed private fields which follow Delphi convention (not flagged by this rule).
Remediation example
var Count: Integer; // instead of: iCount: Integer;