You cannot add an exception for a specific word, but there is some workaround.
With ReSharper, you can add multiple naming rules for a member. You can add a new rule for the "member enumeration" parameters and set the name prefix to "iPhone". With this setting, you can determine the value of renaming "iPhone." Please note that with this parameter you can also determine the renaming value of "iPhoneWithReallyCoolFeature", since it does not violate this rule.
Screenshot for settings:
Update:
If you donβt mind polluting your code, you can add
// ReSharper disable once InconsistentNaming
in front of your member listing "iPhone."
source share