~ubuntu-branches/debian/sid/mono-tools/sid

« back to all changes in this revision

Viewing changes to gendarme/rules/Gendarme.Rules.Security/NativeFieldsShouldNotBeVisibleRule.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-09-13 09:08:47 UTC
  • mfrom: (14.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20100913090847-lhu3z021w2azaj8q
Tags: 2.6.2-3
Upload to Debian Unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
        /// </code>
65
65
        /// </example>
66
66
 
67
 
        [Problem ("This type expose native fields that aren't read-only.")]
68
 
        [Solution ("Native fields are best hidden or, if required, read-only.")]
 
67
        [Problem ("This type exposes native fields that aren't read-only.")]
 
68
        [Solution ("Native fields are best hidden or, if required to be exposed, read-only.")]
69
69
        [FxCopCompatibility ("Microsoft.Security", "CA2111:PointersShouldNotBeVisible")]
70
70
        public class NativeFieldsShouldNotBeVisibleRule : Rule, ITypeRule {
71
71