R# does not complain about "public protected" modifier
There was a typo in the code but ReSharper did not complain:
37 public protected MagazineTableTypeBE MagazineTableType
38 {
39 get { return this.magazineTableType; }
40 set
41 {
42 if (this.magazineTableType == value)
43 {
44 return;
45 }
46 this.magazineTableType = value;
47 this.InitializeData();
48 }
49 }
Line 37 does not compile.
Please sign in to leave a comment.