forked from Leomaradan/WoWAddonsCleaner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
report.html
1075 lines (1075 loc) · 134 KB
/
report.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- saved from url=(0014)about:internet -->
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Gendarme Report</title><script language="javascript">
function expcol (sender, args)
{
var el = document.getElementById (args);
if (el.style.display == 'block') {
sender.textContent = '[show]';
el.style.display = 'none';
} else {
sender.textContent = '[hide]';
el.style.display = 'block';
}
}
</script></head>
<style type="text/css">
body {
font: "DejaVu Sans", "Bitstream Vera Sans", Verdana, sans-serif;
}
h1 {
font-size: 1.8em;
color: #274e80;
}
h2 {
font-size: 1.4em;
color: #19194b;
}
h3 {
font-size: 1.2em;
font-weight: normal;
color: #274e80;
}
p, li, b {
font-size: 1em;
}
p.where, p.problem, p.found, p.solution {
font: "Consolas", "DejaVu Sans Mono", monospace;
background-color: #F6F6F6;
border: 1px solid #DDDDDD;
padding: 10px;
}
p.severity-Critical {
border-left: 6px solid red;
}
p.severity-High {
border-left: 3px solid red;
}
p.severity-Medium {
border-left: 3px solid yellow;
}
p.severity-Low {
border-left: 3px solid green;
}
p.severity-Audit {
border-left: 3px solid blue;
}
span.found {
margin-left: 10px;
}
div.toc {
background-color: #F6F6F6;
border: 1px solid #DDDDDD;
padding: 10px;
float: right;
width: 300px;
}
a:link, a:visited {
color: #274e80;
text-decoration: none;
}
a:active, a:hover {
color: #19194b;
text-decoration: none;
}
a.go-to-rule {
float: right;
color: #274e80;
font-size: 0.6em;
font-weight: normal;
}
</style>
<body>
<h1>Gendarme Report</h1>
<p>Produced on 09.03.2020 09:30:15 UTC.</p>
<div class="toc">
<h2 align="center">Table of contents</h2>
<p style="font-size: 10pt;"><a href="#s1">1. Summary</a><br><a href="#s1_1"> 1.1. List of assemblies searched</a><br><a href="#s1_2"> 1.2. List of rules used</a><br><a href="#s2">2. Reported defects</a><br><a href="#AvoidCodeDuplicatedInSameClassRule"> 2.1. AvoidCodeDuplicatedInSameClassRule<br></a><a href="#AvoidLackOfCohesionOfMethodsRule"> 2.2. AvoidLackOfCohesionOfMethodsRule<br></a><a href="#AvoidLargeClassesRule"> 2.3. AvoidLargeClassesRule<br></a><a href="#AvoidLongMethodsRule"> 2.4. AvoidLongMethodsRule<br></a><a href="#AvoidRepetitiveCallsToPropertiesRule"> 2.5. AvoidRepetitiveCallsToPropertiesRule<br></a><a href="#AvoidUncalledPrivateCodeRule"> 2.6. AvoidUncalledPrivateCodeRule<br></a><a href="#AvoidUnnecessarySpecializationRule"> 2.7. AvoidUnnecessarySpecializationRule<br></a><a href="#AvoidUnneededCallsOnStringRule"> 2.8. AvoidUnneededCallsOnStringRule<br></a><a href="#AvoidUnsealedUninheritedInternalTypeRule"> 2.9. AvoidUnsealedUninheritedInternalTypeRule<br></a><a href="#CompareWithEmptyStringEfficientlyRule"> 2.10. CompareWithEmptyStringEfficientlyRule<br></a><a href="#DoNotIgnoreMethodResultRule"> 2.11. DoNotIgnoreMethodResultRule<br></a><a href="#EnsureLocalDisposalRule"> 2.12. EnsureLocalDisposalRule<br></a><a href="#MarkAssemblyWithCLSCompliantRule"> 2.13. MarkAssemblyWithCLSCompliantRule<br></a><a href="#MethodCanBeMadeStaticRule"> 2.14. MethodCanBeMadeStaticRule<br></a><a href="#MissingSerializableAttributeOnISerializableTypeRule"> 2.15. MissingSerializableAttributeOnISerializableTypeRule<br></a><a href="#MissingSerializationConstructorRule"> 2.16. MissingSerializationConstructorRule<br></a><a href="#UseCorrectCasingRule"> 2.17. UseCorrectCasingRule<br></a><a href="#UseCorrectSuffixRule"> 2.18. UseCorrectSuffixRule<br></a></p>
</div>
<h1><a name="s1">Summary</a></h1>
<p><a href="http://www.mono-project.com/Gendarme">Gendarme</a> found 76 potential defects using 254 rules.
</p>
<p>
<h2>List of assemblies analyzed
<a style="font-size: 66%;" href="#" onclick="expcol(this,'Assemblies_block'); return false;">[show]</a></h2>
<div id="Assemblies_block" style="display:none;">
<ul>
<li>D:\Code\github\leomaradan\WoWAddonsCleaner\WoWAddonsCleaner-alpha0.1.2.exe: 58 defects</li>
</ul>
</div>
</p>
<p>
<h2>List of rules used
<a style="font-size: 66%;" href="#" onclick="expcol(this,'Rules_block'); return false;">[show]</a></h2>
<div id="Rules_block" style="display:none;">
<p><b>Assembly</b>:
<ul>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.AvoidAssemblyVersionMismatchRule(2.10)" target="AvoidAssemblyVersionMismatchRule">Gendarme.Rules.BadPractice.AvoidAssemblyVersionMismatchRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.AttributeStringLiteralsShouldParseCorrectlyRule(2.10)" target="AttributeStringLiteralsShouldParseCorrectlyRule">Gendarme.Rules.Correctness.AttributeStringLiteralsShouldParseCorrectlyRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.InternalNamespacesShouldNotExposeTypesRule(2.10)" target="InternalNamespacesShouldNotExposeTypesRule">Gendarme.Rules.Design.InternalNamespacesShouldNotExposeTypesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.AvoidSmallNamespaceRule(2.10)" target="AvoidSmallNamespaceRule">Gendarme.Rules.Design.AvoidSmallNamespaceRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.MarkAssemblyWithAssemblyVersionRule(2.10)" target="MarkAssemblyWithAssemblyVersionRule">Gendarme.Rules.Design.MarkAssemblyWithAssemblyVersionRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.MarkAssemblyWithComVisibleRule(2.10)" target="MarkAssemblyWithComVisibleRule">Gendarme.Rules.Design.MarkAssemblyWithComVisibleRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.MarkAssemblyWithCLSCompliantRule(2.10)" target="MarkAssemblyWithCLSCompliantRule">Gendarme.Rules.Design.MarkAssemblyWithCLSCompliantRule</a>
: 1 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.MainShouldNotBePublicRule(2.10)" target="MainShouldNotBePublicRule">Gendarme.Rules.Design.MainShouldNotBePublicRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Globalization.SatelliteResourceMismatchRule(2.10)" target="SatelliteResourceMismatchRule">Gendarme.Rules.Globalization.SatelliteResourceMismatchRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Naming.AvoidNonAlphanumericIdentifierRule(2.10)" target="AvoidNonAlphanumericIdentifierRule">Gendarme.Rules.Naming.AvoidNonAlphanumericIdentifierRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Naming.UsePreferredTermsRule(2.10)" target="UsePreferredTermsRule">Gendarme.Rules.Naming.UsePreferredTermsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Naming.AvoidDeepNamespaceHierarchyRule(2.10)" target="AvoidDeepNamespaceHierarchyRule">Gendarme.Rules.Naming.AvoidDeepNamespaceHierarchyRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Naming.UseCorrectCasingRule(2.10)" target="UseCorrectCasingRule">Gendarme.Rules.Naming.UseCorrectCasingRule</a>
: 24 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Portability.ExitCodeIsLimitedOnUnixRule(2.10)" target="ExitCodeIsLimitedOnUnixRule">Gendarme.Rules.Portability.ExitCodeIsLimitedOnUnixRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.UI.SystemWindowsFormsExecutableTargetRule(2.10)" target="SystemWindowsFormsExecutableTargetRule">Gendarme.Rules.UI.SystemWindowsFormsExecutableTargetRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.UI.UseSTAThreadAttributeOnSWFEntryPointsRule(2.10)" target="UseSTAThreadAttributeOnSWFEntryPointsRule">Gendarme.Rules.UI.UseSTAThreadAttributeOnSWFEntryPointsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.UI.GtkSharpExecutableTargetRule(2.10)" target="GtkSharpExecutableTargetRule">Gendarme.Rules.UI.GtkSharpExecutableTargetRule</a>
: 0 defects
</li>
</ul>
</p>
<p><b>Type</b>:
<ul>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.ConstructorShouldNotCallVirtualMethodsRule(2.10)" target="ConstructorShouldNotCallVirtualMethodsRule">Gendarme.Rules.BadPractice.ConstructorShouldNotCallVirtualMethodsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.PreferSafeHandleRule(2.10)" target="PreferSafeHandleRule">Gendarme.Rules.BadPractice.PreferSafeHandleRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.EqualsShouldHandleNullArgRule(2.10)" target="EqualsShouldHandleNullArgRule">Gendarme.Rules.BadPractice.EqualsShouldHandleNullArgRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.ToStringShouldNotReturnNullRule(2.10)" target="ToStringShouldNotReturnNullRule">Gendarme.Rules.BadPractice.ToStringShouldNotReturnNullRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.ObsoleteMessagesShouldNotBeEmptyRule(2.10)" target="ObsoleteMessagesShouldNotBeEmptyRule">Gendarme.Rules.BadPractice.ObsoleteMessagesShouldNotBeEmptyRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.AvoidVisibleConstantFieldRule(2.10)" target="AvoidVisibleConstantFieldRule">Gendarme.Rules.BadPractice.AvoidVisibleConstantFieldRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.OnlyUseDisposeForIDisposableTypesRule(2.10)" target="OnlyUseDisposeForIDisposableTypesRule">Gendarme.Rules.BadPractice.OnlyUseDisposeForIDisposableTypesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Concurrency.DoNotUseThreadStaticWithInstanceFieldsRule(2.10)" target="DoNotUseThreadStaticWithInstanceFieldsRule">Gendarme.Rules.Concurrency.DoNotUseThreadStaticWithInstanceFieldsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Concurrency.NonConstantStaticFieldsShouldNotBeVisibleRule(2.10)" target="NonConstantStaticFieldsShouldNotBeVisibleRule">Gendarme.Rules.Concurrency.NonConstantStaticFieldsShouldNotBeVisibleRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.DisposableFieldsShouldBeDisposedRule(2.10)" target="DisposableFieldsShouldBeDisposedRule">Gendarme.Rules.Correctness.DisposableFieldsShouldBeDisposedRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.AvoidConstructorsInStaticTypesRule(2.10)" target="AvoidConstructorsInStaticTypesRule">Gendarme.Rules.Correctness.AvoidConstructorsInStaticTypesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.FinalizersShouldCallBaseClassFinalizerRule(2.10)" target="FinalizersShouldCallBaseClassFinalizerRule">Gendarme.Rules.Correctness.FinalizersShouldCallBaseClassFinalizerRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.ReviewInconsistentIdentityRule(2.10)" target="ReviewInconsistentIdentityRule">Gendarme.Rules.Correctness.ReviewInconsistentIdentityRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.OverrideEqualsMethodRule(2.10)" target="OverrideEqualsMethodRule">Gendarme.Rules.Design.OverrideEqualsMethodRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.AvoidEmptyInterfaceRule(2.10)" target="AvoidEmptyInterfaceRule">Gendarme.Rules.Design.AvoidEmptyInterfaceRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.UseCorrectDisposeSignaturesRule(2.10)" target="UseCorrectDisposeSignaturesRule">Gendarme.Rules.Design.UseCorrectDisposeSignaturesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.DoNotDeclareProtectedMembersInSealedTypeRule(2.10)" target="DoNotDeclareProtectedMembersInSealedTypeRule">Gendarme.Rules.Design.DoNotDeclareProtectedMembersInSealedTypeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.DoNotDeclareVirtualMethodsInSealedTypeRule(2.10)" target="DoNotDeclareVirtualMethodsInSealedTypeRule">Gendarme.Rules.Design.DoNotDeclareVirtualMethodsInSealedTypeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.FlagsShouldNotDefineAZeroValueRule(2.10)" target="FlagsShouldNotDefineAZeroValueRule">Gendarme.Rules.Design.FlagsShouldNotDefineAZeroValueRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.StronglyTypeICollectionMembersRule(2.10)" target="StronglyTypeICollectionMembersRule">Gendarme.Rules.Design.StronglyTypeICollectionMembersRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.AvoidVisibleFieldsRule(2.10)" target="AvoidVisibleFieldsRule">Gendarme.Rules.Design.AvoidVisibleFieldsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.EnumsShouldUseInt32Rule(2.10)" target="EnumsShouldUseInt32Rule">Gendarme.Rules.Design.EnumsShouldUseInt32Rule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.EnsureSymmetryForOverloadedOperatorsRule(2.10)" target="EnsureSymmetryForOverloadedOperatorsRule">Gendarme.Rules.Design.EnsureSymmetryForOverloadedOperatorsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.AvoidPropertiesWithoutGetAccessorRule(2.10)" target="AvoidPropertiesWithoutGetAccessorRule">Gendarme.Rules.Design.AvoidPropertiesWithoutGetAccessorRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.AbstractTypesShouldNotHavePublicConstructorsRule(2.10)" target="AbstractTypesShouldNotHavePublicConstructorsRule">Gendarme.Rules.Design.AbstractTypesShouldNotHavePublicConstructorsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.UseFlagsAttributeRule(2.10)" target="UseFlagsAttributeRule">Gendarme.Rules.Design.UseFlagsAttributeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.TypesWithNativeFieldsShouldBeDisposableRule(2.10)" target="TypesWithNativeFieldsShouldBeDisposableRule">Gendarme.Rules.Design.TypesWithNativeFieldsShouldBeDisposableRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.DisposableTypesShouldHaveFinalizerRule(2.10)" target="DisposableTypesShouldHaveFinalizerRule">Gendarme.Rules.Design.DisposableTypesShouldHaveFinalizerRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.ConsiderUsingStaticTypeRule(2.10)" target="ConsiderUsingStaticTypeRule">Gendarme.Rules.Design.ConsiderUsingStaticTypeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.ProvideTryParseAlternativeRule(2.10)" target="ProvideTryParseAlternativeRule">Gendarme.Rules.Design.ProvideTryParseAlternativeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.AvoidVisibleNestedTypesRule(2.10)" target="AvoidVisibleNestedTypesRule">Gendarme.Rules.Design.AvoidVisibleNestedTypesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.ImplementICloneableCorrectlyRule(2.10)" target="ImplementICloneableCorrectlyRule">Gendarme.Rules.Design.ImplementICloneableCorrectlyRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.ProvideAlternativeNamesForOperatorOverloadsRule(2.10)" target="ProvideAlternativeNamesForOperatorOverloadsRule">Gendarme.Rules.Design.ProvideAlternativeNamesForOperatorOverloadsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.MissingAttributeUsageOnCustomAttributeRule(2.10)" target="MissingAttributeUsageOnCustomAttributeRule">Gendarme.Rules.Design.MissingAttributeUsageOnCustomAttributeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.ImplementIComparableCorrectlyRule(2.10)" target="ImplementIComparableCorrectlyRule">Gendarme.Rules.Design.ImplementIComparableCorrectlyRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.ImplementEqualsAndGetHashCodeInPairRule(2.10)" target="ImplementEqualsAndGetHashCodeInPairRule">Gendarme.Rules.Design.ImplementEqualsAndGetHashCodeInPairRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.DeclareEventHandlersCorrectlyRule(2.10)" target="DeclareEventHandlersCorrectlyRule">Gendarme.Rules.Design.DeclareEventHandlersCorrectlyRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.EnumeratorsShouldBeStronglyTypedRule(2.10)" target="EnumeratorsShouldBeStronglyTypedRule">Gendarme.Rules.Design.EnumeratorsShouldBeStronglyTypedRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.OperatorEqualsShouldBeOverloadedRule(2.10)" target="OperatorEqualsShouldBeOverloadedRule">Gendarme.Rules.Design.OperatorEqualsShouldBeOverloadedRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.ConsiderAddingInterfaceRule(2.10)" target="ConsiderAddingInterfaceRule">Gendarme.Rules.Design.ConsiderAddingInterfaceRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.TypesShouldBeInsideNamespacesRule(2.10)" target="TypesShouldBeInsideNamespacesRule">Gendarme.Rules.Design.TypesShouldBeInsideNamespacesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.ListsAreStronglyTypedRule(2.10)" target="ListsAreStronglyTypedRule">Gendarme.Rules.Design.ListsAreStronglyTypedRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.ConsiderConvertingFieldToNullableRule(2.10)" target="ConsiderConvertingFieldToNullableRule">Gendarme.Rules.Design.ConsiderConvertingFieldToNullableRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.AttributeArgumentsShouldHaveAccessorsRule(2.10)" target="AttributeArgumentsShouldHaveAccessorsRule">Gendarme.Rules.Design.AttributeArgumentsShouldHaveAccessorsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.TypesWithDisposableFieldsShouldBeDisposableRule(2.10)" target="TypesWithDisposableFieldsShouldBeDisposableRule">Gendarme.Rules.Design.TypesWithDisposableFieldsShouldBeDisposableRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.FinalizersShouldBeProtectedRule(2.10)" target="FinalizersShouldBeProtectedRule">Gendarme.Rules.Design.FinalizersShouldBeProtectedRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.EnumsShouldDefineAZeroValueRule(2.10)" target="EnumsShouldDefineAZeroValueRule">Gendarme.Rules.Design.EnumsShouldDefineAZeroValueRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.Generic.UseGenericEventHandlerRule(2.10)" target="UseGenericEventHandlerRule">Gendarme.Rules.Design.Generic.UseGenericEventHandlerRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.Generic.ImplementGenericCollectionInterfacesRule(2.10)" target="ImplementGenericCollectionInterfacesRule">Gendarme.Rules.Design.Generic.ImplementGenericCollectionInterfacesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.Generic.AvoidDeclaringCustomDelegatesRule(2.10)" target="AvoidDeclaringCustomDelegatesRule">Gendarme.Rules.Design.Generic.AvoidDeclaringCustomDelegatesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.Generic.DoNotDeclareStaticMembersOnGenericTypesRule(2.10)" target="DoNotDeclareStaticMembersOnGenericTypesRule">Gendarme.Rules.Design.Generic.DoNotDeclareStaticMembersOnGenericTypesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.Generic.AvoidExcessiveParametersOnGenericTypesRule(2.10)" target="AvoidExcessiveParametersOnGenericTypesRule">Gendarme.Rules.Design.Generic.AvoidExcessiveParametersOnGenericTypesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.Generic.DoNotExposeGenericListsRule(2.10)" target="DoNotExposeGenericListsRule">Gendarme.Rules.Design.Generic.DoNotExposeGenericListsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Exceptions.ExceptionShouldBeVisibleRule(2.10)" target="ExceptionShouldBeVisibleRule">Gendarme.Rules.Exceptions.ExceptionShouldBeVisibleRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Exceptions.MissingExceptionConstructorsRule(2.10)" target="MissingExceptionConstructorsRule">Gendarme.Rules.Exceptions.MissingExceptionConstructorsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Gendarme.MissingEngineDependencyRule(2.10)" target="MissingEngineDependencyRule">Gendarme.Rules.Gendarme.MissingEngineDependencyRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Gendarme.ReviewAttributesOnRulesRule(2.10)" target="ReviewAttributesOnRulesRule">Gendarme.Rules.Gendarme.ReviewAttributesOnRulesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Gendarme.DefectsMustBeReportedRule(2.10)" target="DefectsMustBeReportedRule">Gendarme.Rules.Gendarme.DefectsMustBeReportedRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Gendarme.UseCorrectSuffixRule(2.10)" target="UseCorrectSuffixRule">Gendarme.Rules.Gendarme.UseCorrectSuffixRule</a>
: 1 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.Com.AutoLayoutTypesShouldNotBeComVisibleRule(2.10)" target="AutoLayoutTypesShouldNotBeComVisibleRule">Gendarme.Rules.Interoperability.Com.AutoLayoutTypesShouldNotBeComVisibleRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.Com.ComVisibleTypesShouldBeCreatableRule(2.10)" target="ComVisibleTypesShouldBeCreatableRule">Gendarme.Rules.Interoperability.Com.ComVisibleTypesShouldBeCreatableRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.Com.MarkComSourceInterfacesAsIDispatchRule(2.10)" target="MarkComSourceInterfacesAsIDispatchRule">Gendarme.Rules.Interoperability.Com.MarkComSourceInterfacesAsIDispatchRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.Com.DoNotUseAutoDualClassInterfaceTypeRule(2.10)" target="DoNotUseAutoDualClassInterfaceTypeRule">Gendarme.Rules.Interoperability.Com.DoNotUseAutoDualClassInterfaceTypeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.Com.ComVisibleShouldInheritFromComVisibleRule(2.10)" target="ComVisibleShouldInheritFromComVisibleRule">Gendarme.Rules.Interoperability.Com.ComVisibleShouldInheritFromComVisibleRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.Com.AvoidNonPublicFieldsInComVisibleValueTypesRule(2.10)" target="AvoidNonPublicFieldsInComVisibleValueTypesRule">Gendarme.Rules.Interoperability.Com.AvoidNonPublicFieldsInComVisibleValueTypesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.Com.AvoidOverloadsInComVisibleInterfacesRule(2.10)" target="AvoidOverloadsInComVisibleInterfacesRule">Gendarme.Rules.Interoperability.Com.AvoidOverloadsInComVisibleInterfacesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.Com.ReviewComRegistrationMethodsRule(2.10)" target="ReviewComRegistrationMethodsRule">Gendarme.Rules.Interoperability.Com.ReviewComRegistrationMethodsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.CentralizePInvokesIntoNativeMethodsTypeRule(2.10)" target="CentralizePInvokesIntoNativeMethodsTypeRule">Gendarme.Rules.Interoperability.CentralizePInvokesIntoNativeMethodsTypeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Maintainability.VariableNamesShouldNotMatchFieldNamesRule(2.10)" target="VariableNamesShouldNotMatchFieldNamesRule">Gendarme.Rules.Maintainability.VariableNamesShouldNotMatchFieldNamesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Maintainability.AvoidLackOfCohesionOfMethodsRule(2.10)" target="AvoidLackOfCohesionOfMethodsRule">Gendarme.Rules.Maintainability.AvoidLackOfCohesionOfMethodsRule</a>
: 2 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Maintainability.ReviewMisleadingFieldNamesRule(2.10)" target="ReviewMisleadingFieldNamesRule">Gendarme.Rules.Maintainability.ReviewMisleadingFieldNamesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Maintainability.RemoveDependenceOnObsoleteCodeRule(2.10)" target="RemoveDependenceOnObsoleteCodeRule">Gendarme.Rules.Maintainability.RemoveDependenceOnObsoleteCodeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Maintainability.AvoidAlwaysNullFieldRule(2.10)" target="AvoidAlwaysNullFieldRule">Gendarme.Rules.Maintainability.AvoidAlwaysNullFieldRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Maintainability.AvoidDeepInheritanceTreeRule(2.10)" target="AvoidDeepInheritanceTreeRule">Gendarme.Rules.Maintainability.AvoidDeepInheritanceTreeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Naming.UsePluralNameInEnumFlagsRule(2.10)" target="UsePluralNameInEnumFlagsRule">Gendarme.Rules.Naming.UsePluralNameInEnumFlagsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Naming.UseCorrectSuffixRule(2.10)" target="UseCorrectSuffixRule">Gendarme.Rules.Naming.UseCorrectSuffixRule</a>
: 1 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Naming.DoNotPrefixEventsWithAfterOrBeforeRule(2.10)" target="DoNotPrefixEventsWithAfterOrBeforeRule">Gendarme.Rules.Naming.DoNotPrefixEventsWithAfterOrBeforeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Naming.DoNotPrefixValuesWithEnumNameRule(2.10)" target="DoNotPrefixValuesWithEnumNameRule">Gendarme.Rules.Naming.DoNotPrefixValuesWithEnumNameRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Naming.UseCorrectPrefixRule(2.10)" target="UseCorrectPrefixRule">Gendarme.Rules.Naming.UseCorrectPrefixRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Naming.DoNotUseReservedInEnumValueNamesRule(2.10)" target="DoNotUseReservedInEnumValueNamesRule">Gendarme.Rules.Naming.DoNotUseReservedInEnumValueNamesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Naming.UseSingularNameInEnumsUnlessAreFlagsRule(2.10)" target="UseSingularNameInEnumsUnlessAreFlagsRule">Gendarme.Rules.Naming.UseSingularNameInEnumsUnlessAreFlagsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Naming.AvoidRedundancyInTypeNameRule(2.10)" target="AvoidRedundancyInTypeNameRule">Gendarme.Rules.Naming.AvoidRedundancyInTypeNameRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Naming.AvoidTypeInterfaceInconsistencyRule(2.10)" target="AvoidTypeInterfaceInconsistencyRule">Gendarme.Rules.Naming.AvoidTypeInterfaceInconsistencyRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.NUnit.UnitTestsMissingTestFixtureRule(2.10)" target="UnitTestsMissingTestFixtureRule">Gendarme.Rules.NUnit.UnitTestsMissingTestFixtureRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidUnusedPrivateFieldsRule(2.10)" target="AvoidUnusedPrivateFieldsRule">Gendarme.Rules.Performance.AvoidUnusedPrivateFieldsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.ImplementEqualsTypeRule(2.10)" target="ImplementEqualsTypeRule">Gendarme.Rules.Performance.ImplementEqualsTypeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.UseSuppressFinalizeOnIDisposableTypeWithFinalizerRule(2.10)" target="UseSuppressFinalizeOnIDisposableTypeWithFinalizerRule">Gendarme.Rules.Performance.UseSuppressFinalizeOnIDisposableTypeWithFinalizerRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.RemoveUnneededFinalizerRule(2.10)" target="RemoveUnneededFinalizerRule">Gendarme.Rules.Performance.RemoveUnneededFinalizerRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.PreferLiteralOverInitOnlyFieldsRule(2.10)" target="PreferLiteralOverInitOnlyFieldsRule">Gendarme.Rules.Performance.PreferLiteralOverInitOnlyFieldsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidUnsealedUninheritedInternalTypeRule(2.10)" target="AvoidUnsealedUninheritedInternalTypeRule">Gendarme.Rules.Performance.AvoidUnsealedUninheritedInternalTypeRule</a>
: 2 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.ConsiderCustomAccessorsForNonVisibleEventsRule(2.10)" target="ConsiderCustomAccessorsForNonVisibleEventsRule">Gendarme.Rules.Performance.ConsiderCustomAccessorsForNonVisibleEventsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidUnsealedConcreteAttributesRule(2.10)" target="AvoidUnsealedConcreteAttributesRule">Gendarme.Rules.Performance.AvoidUnsealedConcreteAttributesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.OverrideValueTypeDefaultsRule(2.10)" target="OverrideValueTypeDefaultsRule">Gendarme.Rules.Performance.OverrideValueTypeDefaultsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidLargeStructureRule(2.10)" target="AvoidLargeStructureRule">Gendarme.Rules.Performance.AvoidLargeStructureRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidUninstantiatedInternalClassesRule(2.10)" target="AvoidUninstantiatedInternalClassesRule">Gendarme.Rules.Performance.AvoidUninstantiatedInternalClassesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Security.Cas.DoNotExposeFieldsInSecuredTypeRule(2.10)" target="DoNotExposeFieldsInSecuredTypeRule">Gendarme.Rules.Security.Cas.DoNotExposeFieldsInSecuredTypeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Security.Cas.ReviewSuppressUnmanagedCodeSecurityUsageRule(2.10)" target="ReviewSuppressUnmanagedCodeSecurityUsageRule">Gendarme.Rules.Security.Cas.ReviewSuppressUnmanagedCodeSecurityUsageRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Security.Cas.SecureGetObjectDataOverridesRule(2.10)" target="SecureGetObjectDataOverridesRule">Gendarme.Rules.Security.Cas.SecureGetObjectDataOverridesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Security.Cas.ReviewSealedTypeWithInheritanceDemandRule(2.10)" target="ReviewSealedTypeWithInheritanceDemandRule">Gendarme.Rules.Security.Cas.ReviewSealedTypeWithInheritanceDemandRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Security.Cas.DoNotReduceTypeSecurityOnMethodsRule(2.10)" target="DoNotReduceTypeSecurityOnMethodsRule">Gendarme.Rules.Security.Cas.DoNotReduceTypeSecurityOnMethodsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Security.Cas.AddMissingTypeInheritanceDemandRule(2.10)" target="AddMissingTypeInheritanceDemandRule">Gendarme.Rules.Security.Cas.AddMissingTypeInheritanceDemandRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Security.ArrayFieldsShouldNotBeReadOnlyRule(2.10)" target="ArrayFieldsShouldNotBeReadOnlyRule">Gendarme.Rules.Security.ArrayFieldsShouldNotBeReadOnlyRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Security.NativeFieldsShouldNotBeVisibleRule(2.10)" target="NativeFieldsShouldNotBeVisibleRule">Gendarme.Rules.Security.NativeFieldsShouldNotBeVisibleRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Security.StaticConstructorsShouldBePrivateRule(2.10)" target="StaticConstructorsShouldBePrivateRule">Gendarme.Rules.Security.StaticConstructorsShouldBePrivateRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Serialization.ImplementISerializableCorrectlyRule(2.10)" target="ImplementISerializableCorrectlyRule">Gendarme.Rules.Serialization.ImplementISerializableCorrectlyRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Serialization.MissingSerializableAttributeOnISerializableTypeRule(2.10)" target="MissingSerializableAttributeOnISerializableTypeRule">Gendarme.Rules.Serialization.MissingSerializableAttributeOnISerializableTypeRule</a>
: 1 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Serialization.MissingSerializationConstructorRule(2.10)" target="MissingSerializationConstructorRule">Gendarme.Rules.Serialization.MissingSerializationConstructorRule</a>
: 1 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Serialization.MarkAllNonSerializableFieldsRule(2.10)" target="MarkAllNonSerializableFieldsRule">Gendarme.Rules.Serialization.MarkAllNonSerializableFieldsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Serialization.MarkEnumerationsAsSerializableRule(2.10)" target="MarkEnumerationsAsSerializableRule">Gendarme.Rules.Serialization.MarkEnumerationsAsSerializableRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Serialization.CallBaseMethodsOnISerializableTypesRule(2.10)" target="CallBaseMethodsOnISerializableTypesRule">Gendarme.Rules.Serialization.CallBaseMethodsOnISerializableTypesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Serialization.DeserializeOptionalFieldRule(2.10)" target="DeserializeOptionalFieldRule">Gendarme.Rules.Serialization.DeserializeOptionalFieldRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Smells.AvoidCodeDuplicatedInSameClassRule(2.10)" target="AvoidCodeDuplicatedInSameClassRule">Gendarme.Rules.Smells.AvoidCodeDuplicatedInSameClassRule</a>
: 10 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Smells.AvoidLargeClassesRule(2.10)" target="AvoidLargeClassesRule">Gendarme.Rules.Smells.AvoidLargeClassesRule</a>
: 5 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Smells.AvoidLongParameterListsRule(2.10)" target="AvoidLongParameterListsRule">Gendarme.Rules.Smells.AvoidLongParameterListsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Smells.AvoidCodeDuplicatedInSiblingClassesRule(2.10)" target="AvoidCodeDuplicatedInSiblingClassesRule">Gendarme.Rules.Smells.AvoidCodeDuplicatedInSiblingClassesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Smells.AvoidSpeculativeGeneralityRule(2.10)" target="AvoidSpeculativeGeneralityRule">Gendarme.Rules.Smells.AvoidSpeculativeGeneralityRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.UI.AddMatchingArrangeMeasureOverrideRule(2.10)" target="AddMatchingArrangeMeasureOverrideRule">Gendarme.Rules.UI.AddMatchingArrangeMeasureOverrideRule</a>
: 0 defects
</li>
</ul>
</p>
<p><b>Method</b>:
<ul>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.PreferParamsArrayForVariableArgumentsRule(2.10)" target="PreferParamsArrayForVariableArgumentsRule">Gendarme.Rules.BadPractice.PreferParamsArrayForVariableArgumentsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.DoNotUseGetInterfaceToCheckAssignabilityRule(2.10)" target="DoNotUseGetInterfaceToCheckAssignabilityRule">Gendarme.Rules.BadPractice.DoNotUseGetInterfaceToCheckAssignabilityRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.UseFileOpenOnlyWithFileAccessRule(2.10)" target="UseFileOpenOnlyWithFileAccessRule">Gendarme.Rules.BadPractice.UseFileOpenOnlyWithFileAccessRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.GetEntryAssemblyMayReturnNullRule(2.10)" target="GetEntryAssemblyMayReturnNullRule">Gendarme.Rules.BadPractice.GetEntryAssemblyMayReturnNullRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.DoNotForgetNotImplementedMethodsRule(2.10)" target="DoNotForgetNotImplementedMethodsRule">Gendarme.Rules.BadPractice.DoNotForgetNotImplementedMethodsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.PreferEmptyInstanceOverNullRule(2.10)" target="PreferEmptyInstanceOverNullRule">Gendarme.Rules.BadPractice.PreferEmptyInstanceOverNullRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.CheckNewThreadWithoutStartRule(2.10)" target="CheckNewThreadWithoutStartRule">Gendarme.Rules.BadPractice.CheckNewThreadWithoutStartRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.DoNotUseEnumIsAssignableFromRule(2.10)" target="DoNotUseEnumIsAssignableFromRule">Gendarme.Rules.BadPractice.DoNotUseEnumIsAssignableFromRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.ReplaceIncompleteOddnessCheckRule(2.10)" target="ReplaceIncompleteOddnessCheckRule">Gendarme.Rules.BadPractice.ReplaceIncompleteOddnessCheckRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.DisableDebuggingCodeRule(2.10)" target="DisableDebuggingCodeRule">Gendarme.Rules.BadPractice.DisableDebuggingCodeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.AvoidCallingProblematicMethodsRule(2.10)" target="AvoidCallingProblematicMethodsRule">Gendarme.Rules.BadPractice.AvoidCallingProblematicMethodsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.CheckNewExceptionWithoutThrowingRule(2.10)" target="CheckNewExceptionWithoutThrowingRule">Gendarme.Rules.BadPractice.CheckNewExceptionWithoutThrowingRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.PreferTryParseRule(2.10)" target="PreferTryParseRule">Gendarme.Rules.BadPractice.PreferTryParseRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.BadPractice.CloneMethodShouldNotReturnNullRule(2.10)" target="CloneMethodShouldNotReturnNullRule">Gendarme.Rules.BadPractice.CloneMethodShouldNotReturnNullRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Concurrency.DoubleCheckLockingRule(2.10)" target="DoubleCheckLockingRule">Gendarme.Rules.Concurrency.DoubleCheckLockingRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Concurrency.DoNotUseMethodImplOptionsSynchronizedRule(2.10)" target="DoNotUseMethodImplOptionsSynchronizedRule">Gendarme.Rules.Concurrency.DoNotUseMethodImplOptionsSynchronizedRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Concurrency.DoNotUseLockedRegionOutsideMethodRule(2.10)" target="DoNotUseLockedRegionOutsideMethodRule">Gendarme.Rules.Concurrency.DoNotUseLockedRegionOutsideMethodRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Concurrency.DoNotLockOnThisOrTypesRule(2.10)" target="DoNotLockOnThisOrTypesRule">Gendarme.Rules.Concurrency.DoNotLockOnThisOrTypesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Concurrency.WriteStaticFieldFromInstanceMethodRule(2.10)" target="WriteStaticFieldFromInstanceMethodRule">Gendarme.Rules.Concurrency.WriteStaticFieldFromInstanceMethodRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Concurrency.DecorateThreadsRule(2.10)" target="DecorateThreadsRule">Gendarme.Rules.Concurrency.DecorateThreadsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Concurrency.DoNotLockOnWeakIdentityObjectsRule(2.10)" target="DoNotLockOnWeakIdentityObjectsRule">Gendarme.Rules.Concurrency.DoNotLockOnWeakIdentityObjectsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Concurrency.ReviewLockUsedOnlyForOperationsOnVariablesRule(2.10)" target="ReviewLockUsedOnlyForOperationsOnVariablesRule">Gendarme.Rules.Concurrency.ReviewLockUsedOnlyForOperationsOnVariablesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Concurrency.ProtectCallToEventDelegatesRule(2.10)" target="ProtectCallToEventDelegatesRule">Gendarme.Rules.Concurrency.ProtectCallToEventDelegatesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.ReviewUseOfModuloOneOnIntegersRule(2.10)" target="ReviewUseOfModuloOneOnIntegersRule">Gendarme.Rules.Correctness.ReviewUseOfModuloOneOnIntegersRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.DoNotRoundIntegersRule(2.10)" target="DoNotRoundIntegersRule">Gendarme.Rules.Correctness.DoNotRoundIntegersRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.ReviewUseOfInt64BitsToDoubleRule(2.10)" target="ReviewUseOfInt64BitsToDoubleRule">Gendarme.Rules.Correctness.ReviewUseOfInt64BitsToDoubleRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.ProvideCorrectRegexPatternRule(2.10)" target="ProvideCorrectRegexPatternRule">Gendarme.Rules.Correctness.ProvideCorrectRegexPatternRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.AvoidCodeWithSideEffectsInConditionalCodeRule(2.10)" target="AvoidCodeWithSideEffectsInConditionalCodeRule">Gendarme.Rules.Correctness.AvoidCodeWithSideEffectsInConditionalCodeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.ReviewDoubleAssignmentRule(2.10)" target="ReviewDoubleAssignmentRule">Gendarme.Rules.Correctness.ReviewDoubleAssignmentRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.MethodCanBeMadeStaticRule(2.10)" target="MethodCanBeMadeStaticRule">Gendarme.Rules.Correctness.MethodCanBeMadeStaticRule</a>
: 1 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.DoNotCompareWithNaNRule(2.10)" target="DoNotCompareWithNaNRule">Gendarme.Rules.Correctness.DoNotCompareWithNaNRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.ReviewSelfAssignmentRule(2.10)" target="ReviewSelfAssignmentRule">Gendarme.Rules.Correctness.ReviewSelfAssignmentRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.ReviewUselessControlFlowRule(2.10)" target="ReviewUselessControlFlowRule">Gendarme.Rules.Correctness.ReviewUselessControlFlowRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.ProvideValidXmlStringRule(2.10)" target="ProvideValidXmlStringRule">Gendarme.Rules.Correctness.ProvideValidXmlStringRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.EnsureLocalDisposalRule(2.10)" target="EnsureLocalDisposalRule">Gendarme.Rules.Correctness.EnsureLocalDisposalRule</a>
: 1 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.CallingEqualsWithNullArgRule(2.10)" target="CallingEqualsWithNullArgRule">Gendarme.Rules.Correctness.CallingEqualsWithNullArgRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.ReviewCastOnIntegerDivisionRule(2.10)" target="ReviewCastOnIntegerDivisionRule">Gendarme.Rules.Correctness.ReviewCastOnIntegerDivisionRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.ProvideValidXPathExpressionRule(2.10)" target="ProvideValidXPathExpressionRule">Gendarme.Rules.Correctness.ProvideValidXPathExpressionRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.CheckParametersNullityInVisibleMethodsRule(2.10)" target="CheckParametersNullityInVisibleMethodsRule">Gendarme.Rules.Correctness.CheckParametersNullityInVisibleMethodsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.UseNoInliningWithGetCallingAssemblyRule(2.10)" target="UseNoInliningWithGetCallingAssemblyRule">Gendarme.Rules.Correctness.UseNoInliningWithGetCallingAssemblyRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.AvoidFloatingPointEqualityRule(2.10)" target="AvoidFloatingPointEqualityRule">Gendarme.Rules.Correctness.AvoidFloatingPointEqualityRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.BadRecursiveInvocationRule(2.10)" target="BadRecursiveInvocationRule">Gendarme.Rules.Correctness.BadRecursiveInvocationRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.AvoidMethodsWithSideEffectsInConditionalCodeRule(2.10)" target="AvoidMethodsWithSideEffectsInConditionalCodeRule">Gendarme.Rules.Correctness.AvoidMethodsWithSideEffectsInConditionalCodeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.ReviewCastOnIntegerMultiplicationRule(2.10)" target="ReviewCastOnIntegerMultiplicationRule">Gendarme.Rules.Correctness.ReviewCastOnIntegerMultiplicationRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.UseValueInPropertySetterRule(2.10)" target="UseValueInPropertySetterRule">Gendarme.Rules.Correctness.UseValueInPropertySetterRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.ProvideCorrectArgumentsToFormattingMethodsRule(2.10)" target="ProvideCorrectArgumentsToFormattingMethodsRule">Gendarme.Rules.Correctness.ProvideCorrectArgumentsToFormattingMethodsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.DoNotRecurseInEqualityRule(2.10)" target="DoNotRecurseInEqualityRule">Gendarme.Rules.Correctness.DoNotRecurseInEqualityRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.AvoidMultidimensionalIndexerRule(2.10)" target="AvoidMultidimensionalIndexerRule">Gendarme.Rules.Design.AvoidMultidimensionalIndexerRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.PreferUriOverStringRule(2.10)" target="PreferUriOverStringRule">Gendarme.Rules.Design.PreferUriOverStringRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.PreferEventsOverMethodsRule(2.10)" target="PreferEventsOverMethodsRule">Gendarme.Rules.Design.PreferEventsOverMethodsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.AvoidRefAndOutParametersRule(2.10)" target="AvoidRefAndOutParametersRule">Gendarme.Rules.Design.AvoidRefAndOutParametersRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.ConsiderConvertingMethodToPropertyRule(2.10)" target="ConsiderConvertingMethodToPropertyRule">Gendarme.Rules.Design.ConsiderConvertingMethodToPropertyRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.PreferIntegerOrStringForIndexersRule(2.10)" target="PreferIntegerOrStringForIndexersRule">Gendarme.Rules.Design.PreferIntegerOrStringForIndexersRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.PreferXmlAbstractionsRule(2.10)" target="PreferXmlAbstractionsRule">Gendarme.Rules.Design.PreferXmlAbstractionsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.Generic.AvoidMethodWithUnusedGenericTypeRule(2.10)" target="AvoidMethodWithUnusedGenericTypeRule">Gendarme.Rules.Design.Generic.AvoidMethodWithUnusedGenericTypeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.Generic.PreferGenericsOverRefObjectRule(2.10)" target="PreferGenericsOverRefObjectRule">Gendarme.Rules.Design.Generic.PreferGenericsOverRefObjectRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.Generic.DoNotExposeNestedGenericSignaturesRule(2.10)" target="DoNotExposeNestedGenericSignaturesRule">Gendarme.Rules.Design.Generic.DoNotExposeNestedGenericSignaturesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.Linq.AvoidExtensionMethodOnSystemObjectRule(2.10)" target="AvoidExtensionMethodOnSystemObjectRule">Gendarme.Rules.Design.Linq.AvoidExtensionMethodOnSystemObjectRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Exceptions.UseObjectDisposedExceptionRule(2.10)" target="UseObjectDisposedExceptionRule">Gendarme.Rules.Exceptions.UseObjectDisposedExceptionRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Exceptions.DoNotThrowReservedExceptionRule(2.10)" target="DoNotThrowReservedExceptionRule">Gendarme.Rules.Exceptions.DoNotThrowReservedExceptionRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Exceptions.AvoidThrowingBasicExceptionsRule(2.10)" target="AvoidThrowingBasicExceptionsRule">Gendarme.Rules.Exceptions.AvoidThrowingBasicExceptionsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Exceptions.DoNotDestroyStackTraceRule(2.10)" target="DoNotDestroyStackTraceRule">Gendarme.Rules.Exceptions.DoNotDestroyStackTraceRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Exceptions.AvoidArgumentExceptionDefaultConstructorRule(2.10)" target="AvoidArgumentExceptionDefaultConstructorRule">Gendarme.Rules.Exceptions.AvoidArgumentExceptionDefaultConstructorRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Exceptions.DoNotThrowInUnexpectedLocationRule(2.10)" target="DoNotThrowInUnexpectedLocationRule">Gendarme.Rules.Exceptions.DoNotThrowInUnexpectedLocationRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Exceptions.InstantiateArgumentExceptionCorrectlyRule(2.10)" target="InstantiateArgumentExceptionCorrectlyRule">Gendarme.Rules.Exceptions.InstantiateArgumentExceptionCorrectlyRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Exceptions.DoNotSwallowErrorsCatchingNonSpecificExceptionsRule(2.10)" target="DoNotSwallowErrorsCatchingNonSpecificExceptionsRule">Gendarme.Rules.Exceptions.DoNotSwallowErrorsCatchingNonSpecificExceptionsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Gendarme.DoNotThrowExceptionRule(2.10)" target="DoNotThrowExceptionRule">Gendarme.Rules.Gendarme.DoNotThrowExceptionRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Globalization.AvoidUnusedInternalResourceRule(2.10)" target="AvoidUnusedInternalResourceRule">Gendarme.Rules.Globalization.AvoidUnusedInternalResourceRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.Com.AvoidInt64ArgumentsInComVisibleMethodsRule(2.10)" target="AvoidInt64ArgumentsInComVisibleMethodsRule">Gendarme.Rules.Interoperability.Com.AvoidInt64ArgumentsInComVisibleMethodsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.Com.AvoidStaticMembersInComVisibleTypesRule(2.10)" target="AvoidStaticMembersInComVisibleTypesRule">Gendarme.Rules.Interoperability.Com.AvoidStaticMembersInComVisibleTypesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.DoNotAssumeIntPtrSizeRule(2.10)" target="DoNotAssumeIntPtrSizeRule">Gendarme.Rules.Interoperability.DoNotAssumeIntPtrSizeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.UseManagedAlternativesToPInvokeRule(2.10)" target="UseManagedAlternativesToPInvokeRule">Gendarme.Rules.Interoperability.UseManagedAlternativesToPInvokeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.MarshalBooleansInPInvokeDeclarationsRule(2.10)" target="MarshalBooleansInPInvokeDeclarationsRule">Gendarme.Rules.Interoperability.MarshalBooleansInPInvokeDeclarationsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.DelegatesPassedToNativeCodeMustIncludeExceptionHandlingRule(2.10)" target="DelegatesPassedToNativeCodeMustIncludeExceptionHandlingRule">Gendarme.Rules.Interoperability.DelegatesPassedToNativeCodeMustIncludeExceptionHandlingRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.GetLastErrorMustBeCalledRightAfterPInvokeRule(2.10)" target="GetLastErrorMustBeCalledRightAfterPInvokeRule">Gendarme.Rules.Interoperability.GetLastErrorMustBeCalledRightAfterPInvokeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.PInvokeShouldNotBeVisibleRule(2.10)" target="PInvokeShouldNotBeVisibleRule">Gendarme.Rules.Interoperability.PInvokeShouldNotBeVisibleRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Interoperability.MarshalStringsInPInvokeDeclarationsRule(2.10)" target="MarshalStringsInPInvokeDeclarationsRule">Gendarme.Rules.Interoperability.MarshalStringsInPInvokeDeclarationsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Maintainability.ConsiderUsingStopwatchRule(2.10)" target="ConsiderUsingStopwatchRule">Gendarme.Rules.Maintainability.ConsiderUsingStopwatchRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Maintainability.AvoidComplexMethodsRule(2.10)" target="AvoidComplexMethodsRule">Gendarme.Rules.Maintainability.AvoidComplexMethodsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Maintainability.PreferStringIsNullOrEmptyRule(2.10)" target="PreferStringIsNullOrEmptyRule">Gendarme.Rules.Maintainability.PreferStringIsNullOrEmptyRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Maintainability.AvoidUnnecessarySpecializationRule(2.10)" target="AvoidUnnecessarySpecializationRule">Gendarme.Rules.Maintainability.AvoidUnnecessarySpecializationRule</a>
: 1 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Naming.ParameterNamesShouldMatchOverriddenMethodRule(2.10)" target="ParameterNamesShouldMatchOverriddenMethodRule">Gendarme.Rules.Naming.ParameterNamesShouldMatchOverriddenMethodRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Naming.AvoidRedundancyInMethodNameRule(2.10)" target="AvoidRedundancyInMethodNameRule">Gendarme.Rules.Naming.AvoidRedundancyInMethodNameRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.NUnit.TestMethodsMustBePublicRule(2.10)" target="TestMethodsMustBePublicRule">Gendarme.Rules.NUnit.TestMethodsMustBePublicRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.NUnit.ProvideMessageOnAssertCallsRule(2.10)" target="ProvideMessageOnAssertCallsRule">Gendarme.Rules.NUnit.ProvideMessageOnAssertCallsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidUnneededFieldInitializationRule(2.10)" target="AvoidUnneededFieldInitializationRule">Gendarme.Rules.Performance.AvoidUnneededFieldInitializationRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidUncalledPrivateCodeRule(2.10)" target="AvoidUncalledPrivateCodeRule">Gendarme.Rules.Performance.AvoidUncalledPrivateCodeRule</a>
: 2 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidConcatenatingCharsRule(2.10)" target="AvoidConcatenatingCharsRule">Gendarme.Rules.Performance.AvoidConcatenatingCharsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.UseTypeEmptyTypesRule(2.10)" target="UseTypeEmptyTypesRule">Gendarme.Rules.Performance.UseTypeEmptyTypesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.UseIsOperatorRule(2.10)" target="UseIsOperatorRule">Gendarme.Rules.Performance.UseIsOperatorRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.CompareWithEmptyStringEfficientlyRule(2.10)" target="CompareWithEmptyStringEfficientlyRule">Gendarme.Rules.Performance.CompareWithEmptyStringEfficientlyRule</a>
: 1 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.MathMinMaxCandidateRule(2.10)" target="MathMinMaxCandidateRule">Gendarme.Rules.Performance.MathMinMaxCandidateRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.DoNotIgnoreMethodResultRule(2.10)" target="DoNotIgnoreMethodResultRule">Gendarme.Rules.Performance.DoNotIgnoreMethodResultRule</a>
: 1 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidRepetitiveCallsToPropertiesRule(2.10)" target="AvoidRepetitiveCallsToPropertiesRule">Gendarme.Rules.Performance.AvoidRepetitiveCallsToPropertiesRule</a>
: 15 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidRepetitiveCastsRule(2.10)" target="AvoidRepetitiveCastsRule">Gendarme.Rules.Performance.AvoidRepetitiveCastsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidUnusedParametersRule(2.10)" target="AvoidUnusedParametersRule">Gendarme.Rules.Performance.AvoidUnusedParametersRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidUnnecessaryOverridesRule(2.10)" target="AvoidUnnecessaryOverridesRule">Gendarme.Rules.Performance.AvoidUnnecessaryOverridesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidLocalDataStoreSlotRule(2.10)" target="AvoidLocalDataStoreSlotRule">Gendarme.Rules.Performance.AvoidLocalDataStoreSlotRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.RemoveUnusedLocalVariablesRule(2.10)" target="RemoveUnusedLocalVariablesRule">Gendarme.Rules.Performance.RemoveUnusedLocalVariablesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidLargeNumberOfLocalVariablesRule(2.10)" target="AvoidLargeNumberOfLocalVariablesRule">Gendarme.Rules.Performance.AvoidLargeNumberOfLocalVariablesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.UseStringEmptyRule(2.10)" target="UseStringEmptyRule">Gendarme.Rules.Performance.UseStringEmptyRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.PreferCharOverloadRule(2.10)" target="PreferCharOverloadRule">Gendarme.Rules.Performance.PreferCharOverloadRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidUnneededCallsOnStringRule(2.10)" target="AvoidUnneededCallsOnStringRule">Gendarme.Rules.Performance.AvoidUnneededCallsOnStringRule</a>
: 3 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidReturningArraysOnPropertiesRule(2.10)" target="AvoidReturningArraysOnPropertiesRule">Gendarme.Rules.Performance.AvoidReturningArraysOnPropertiesRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.PreferInterfaceConstraintOnGenericParameterForPrimitiveInterfaceRule(2.10)" target="PreferInterfaceConstraintOnGenericParameterForPrimitiveInterfaceRule">Gendarme.Rules.Performance.PreferInterfaceConstraintOnGenericParameterForPrimitiveInterfaceRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.ReviewLinqMethodRule(2.10)" target="ReviewLinqMethodRule">Gendarme.Rules.Performance.ReviewLinqMethodRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidTypeGetTypeForConstantStringsRule(2.10)" target="AvoidTypeGetTypeForConstantStringsRule">Gendarme.Rules.Performance.AvoidTypeGetTypeForConstantStringsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidMethodWithLargeMaximumStackSizeRule(2.10)" target="AvoidMethodWithLargeMaximumStackSizeRule">Gendarme.Rules.Performance.AvoidMethodWithLargeMaximumStackSizeRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidUnneededUnboxingRule(2.10)" target="AvoidUnneededUnboxingRule">Gendarme.Rules.Performance.AvoidUnneededUnboxingRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Portability.NewLineLiteralRule(2.10)" target="NewLineLiteralRule">Gendarme.Rules.Portability.NewLineLiteralRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Portability.DoNotHardcodePathsRule(2.10)" target="DoNotHardcodePathsRule">Gendarme.Rules.Portability.DoNotHardcodePathsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Portability.MonoCompatibilityReviewRule(2.10)" target="MonoCompatibilityReviewRule">Gendarme.Rules.Portability.MonoCompatibilityReviewRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Portability.FeatureRequiresRootPrivilegeOnUnixRule(2.10)" target="FeatureRequiresRootPrivilegeOnUnixRule">Gendarme.Rules.Portability.FeatureRequiresRootPrivilegeOnUnixRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Security.Cas.DoNotExposeMethodsProtectedByLinkDemandRule(2.10)" target="DoNotExposeMethodsProtectedByLinkDemandRule">Gendarme.Rules.Security.Cas.DoNotExposeMethodsProtectedByLinkDemandRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Security.Cas.ReviewNonVirtualMethodWithInheritanceDemandRule(2.10)" target="ReviewNonVirtualMethodWithInheritanceDemandRule">Gendarme.Rules.Security.Cas.ReviewNonVirtualMethodWithInheritanceDemandRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Security.DoNotShortCircuitCertificateCheckRule(2.10)" target="DoNotShortCircuitCertificateCheckRule">Gendarme.Rules.Security.DoNotShortCircuitCertificateCheckRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Serialization.UseCorrectSignatureForSerializationMethodsRule(2.10)" target="UseCorrectSignatureForSerializationMethodsRule">Gendarme.Rules.Serialization.UseCorrectSignatureForSerializationMethodsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Smells.AvoidMessageChainsRule(2.10)" target="AvoidMessageChainsRule">Gendarme.Rules.Smells.AvoidMessageChainsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Smells.AvoidSwitchStatementsRule(2.10)" target="AvoidSwitchStatementsRule">Gendarme.Rules.Smells.AvoidSwitchStatementsRule</a>
: 0 defects
</li>
<li><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Smells.AvoidLongMethodsRule(2.10)" target="AvoidLongMethodsRule">Gendarme.Rules.Smells.AvoidLongMethodsRule</a>
: 4 defects
</li>
</ul>
</p>
</div>
</p>
<h1><a name="s2">Reported Defects</a></h1>
<p>
<h3>1. <a name="AvoidCodeDuplicatedInSameClassRule"></a><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Smells.AvoidCodeDuplicatedInSameClassRule(2.10)" target="AvoidCodeDuplicatedInSameClassRule">AvoidCodeDuplicatedInSameClassRule</a>
<a style="font-size: 66%;" href="#" onclick="expcol(this,'AvoidCodeDuplicatedInSameClassRule_block'); return false;">[hide]</a></h3>
<div id="AvoidCodeDuplicatedInSameClassRule_block" style="display:block;"><b>Problem:</b><p class="problem">There is similar code in various methods in the same class. Your code will be better if you can unify them.</p><b>Solution:</b><p class="solution">You should apply the Extract Method refactoring and have a single implementation of the code.</p><b>10 defect(s) found:</b><p class="found severity-High" title="AvoidCodeDuplicatedInSameClassRule"><b>Target:</b> WoWAddonsCleaner.AddonsScanner<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidCodeDuplicatedInSameClassRule on WoWAddonsCleaner.AddonsScanner"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Location:</b> System.Void WoWAddonsCleaner.AddonsScanner::scanWTFFolder()<br><b>Source:</b> debugging symbols unavailable, IL offset 0x0006<br><b>Details:</b> Duplicated code with System.Void WoWAddonsCleaner.AddonsScanner::scanAddonFolder()<br></span><span class="found" title="AvoidCodeDuplicatedInSameClassRule on WoWAddonsCleaner.AddonsScanner"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Location:</b> System.Void WoWAddonsCleaner.AddonsScanner::scanWTFFolder()<br><b>Source:</b> debugging symbols unavailable, IL offset 0x0006<br><b>Details:</b> Duplicated code with System.Void WoWAddonsCleaner.AddonsScanner::removeWTF(System.Collections.Generic.Dictionary`2<System.String,System.String>)<br></span><span class="found" title="AvoidCodeDuplicatedInSameClassRule on WoWAddonsCleaner.AddonsScanner"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Location:</b> System.Void WoWAddonsCleaner.AddonsScanner::checkOrphanAddons()<br><b>Source:</b> debugging symbols unavailable, IL offset 0x00cb<br><b>Details:</b> Duplicated code with System.Void WoWAddonsCleaner.AddonsScanner::scanAddonFolder()<br></span><span class="found" title="AvoidCodeDuplicatedInSameClassRule on WoWAddonsCleaner.AddonsScanner"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Location:</b> System.Collections.Generic.HashSet`1<System.String> WoWAddonsCleaner.AddonsScanner::listOrphanAddons()<br><b>Source:</b> debugging symbols unavailable, IL offset 0x0000<br><b>Details:</b> Duplicated code with System.Collections.Generic.List`1<System.String> WoWAddonsCleaner.AddonsScanner::listOrphanSavedVariables()<br></span><span class="found" title="AvoidCodeDuplicatedInSameClassRule on WoWAddonsCleaner.AddonsScanner"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Location:</b> System.Collections.Generic.HashSet`1<System.String> WoWAddonsCleaner.AddonsScanner::listOrphanAddons()<br><b>Source:</b> debugging symbols unavailable, IL offset 0x0000<br><b>Details:</b> Duplicated code with System.Collections.Generic.List`1<System.String> WoWAddonsCleaner.AddonsScanner::listOrphanSavedVariablesPerCharacter()<br></span><span class="found" title="AvoidCodeDuplicatedInSameClassRule on WoWAddonsCleaner.AddonsScanner"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Location:</b> System.Collections.Generic.HashSet`1<System.String> WoWAddonsCleaner.AddonsScanner::listOrphanAddons()<br><b>Source:</b> debugging symbols unavailable, IL offset 0x0000<br><b>Details:</b> Duplicated code with System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.List`1<System.String>>>> WoWAddonsCleaner.AddonsScanner::listCharacters()<br></span><span class="found" title="AvoidCodeDuplicatedInSameClassRule on WoWAddonsCleaner.AddonsScanner"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Location:</b> System.Collections.Generic.List`1<System.String> WoWAddonsCleaner.AddonsScanner::listOrphanSavedVariables()<br><b>Source:</b> debugging symbols unavailable, IL offset 0x0000<br><b>Details:</b> Duplicated code with System.Collections.Generic.List`1<System.String> WoWAddonsCleaner.AddonsScanner::listOrphanSavedVariablesPerCharacter()<br></span><span class="found" title="AvoidCodeDuplicatedInSameClassRule on WoWAddonsCleaner.AddonsScanner"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Location:</b> System.Collections.Generic.List`1<System.String> WoWAddonsCleaner.AddonsScanner::listOrphanSavedVariables()<br><b>Source:</b> debugging symbols unavailable, IL offset 0x0000<br><b>Details:</b> Duplicated code with System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.List`1<System.String>>>> WoWAddonsCleaner.AddonsScanner::listCharacters()<br></span><span class="found" title="AvoidCodeDuplicatedInSameClassRule on WoWAddonsCleaner.AddonsScanner"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Location:</b> System.Collections.Generic.List`1<System.String> WoWAddonsCleaner.AddonsScanner::listOrphanSavedVariablesPerCharacter()<br><b>Source:</b> debugging symbols unavailable, IL offset 0x0000<br><b>Details:</b> Duplicated code with System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.List`1<System.String>>>> WoWAddonsCleaner.AddonsScanner::listCharacters()<br></span><a class="go-to-rule" href="#AvoidCodeDuplicatedInSameClassRule">Go to AvoidCodeDuplicatedInSameClassRule description</a></p>
<p class="found severity-High" title="AvoidCodeDuplicatedInSameClassRule"><b>Target:</b> WoWAddonsCleaner.Form1<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidCodeDuplicatedInSameClassRule on WoWAddonsCleaner.Form1"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Location:</b> System.Void WoWAddonsCleaner.Form1::btnDeleteOrphanAddons_Click(System.Object,System.EventArgs)<br><b>Source:</b> debugging symbols unavailable, IL offset 0x0006<br><b>Details:</b> Duplicated code with System.Void WoWAddonsCleaner.Form1::btnDeleteOrphanWTF_Click(System.Object,System.EventArgs)<br></span><a class="go-to-rule" href="#AvoidCodeDuplicatedInSameClassRule">Go to AvoidCodeDuplicatedInSameClassRule description</a></p>
</div>
<h3>2. <a name="AvoidLackOfCohesionOfMethodsRule"></a><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Maintainability.AvoidLackOfCohesionOfMethodsRule(2.10)" target="AvoidLackOfCohesionOfMethodsRule">AvoidLackOfCohesionOfMethodsRule</a>
<a style="font-size: 66%;" href="#" onclick="expcol(this,'AvoidLackOfCohesionOfMethodsRule_block'); return false;">[hide]</a></h3>
<div id="AvoidLackOfCohesionOfMethodsRule_block" style="display:block;"><b>Problem:</b><p class="problem">The methods in this class lack cohesion (a higher score is better). This leads to code which is harder to understand and maintain.</p><b>Solution:</b><p class="solution">You can apply the Extract Class or Extract Subclass refactoring.</p><b>2 defect(s) found:</b><p class="found severity-Medium" title="AvoidLackOfCohesionOfMethodsRule"><b>Target:</b> WoWAddonsCleaner.AddonsScanner<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidLackOfCohesionOfMethodsRule on WoWAddonsCleaner.AddonsScanner"><br><b>Severity:</b> Medium
<b>Confidence:</b> Normal<br><b>Details:</b> Type cohesiveness : 28%<br></span><a class="go-to-rule" href="#AvoidLackOfCohesionOfMethodsRule">Go to AvoidLackOfCohesionOfMethodsRule description</a></p>
<p class="found severity-High" title="AvoidLackOfCohesionOfMethodsRule"><b>Target:</b> WoWAddonsCleaner.Form1<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidLackOfCohesionOfMethodsRule on WoWAddonsCleaner.Form1"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Details:</b> Type cohesiveness : 18%<br></span><a class="go-to-rule" href="#AvoidLackOfCohesionOfMethodsRule">Go to AvoidLackOfCohesionOfMethodsRule description</a></p>
</div>
<h3>3. <a name="AvoidLargeClassesRule"></a><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Smells.AvoidLargeClassesRule(2.10)" target="AvoidLargeClassesRule">AvoidLargeClassesRule</a>
<a style="font-size: 66%;" href="#" onclick="expcol(this,'AvoidLargeClassesRule_block'); return false;">[hide]</a></h3>
<div id="AvoidLargeClassesRule_block" style="display:block;"><b>Problem:</b><p class="problem">The class is trying to do too much. Generally if a class is too large, duplicated code will not be far away.</p><b>Solution:</b><p class="solution">You can apply the Extract Class or Extract Subclass refactoring.</p><b>5 defect(s) found:</b><p class="found severity-Medium" title="AvoidLargeClassesRule"><b>Target:</b> WoWAddonsCleaner.AddonsScanner<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidLargeClassesRule on WoWAddonsCleaner.AddonsScanner"><br><b>Severity:</b> Medium
<b>Confidence:</b> High<br><b>Details:</b> This type contains fields common prefixes: 3 fields prefixed with 'orphan'.<br></span><span class="found" title="AvoidLargeClassesRule on WoWAddonsCleaner.AddonsScanner"><br><b>Severity:</b> Medium
<b>Confidence:</b> High<br><b>Details:</b> This type contains fields common prefixes: 2 fields prefixed with 'saved'.<br></span><a class="go-to-rule" href="#AvoidLargeClassesRule">Go to AvoidLargeClassesRule description</a></p>
<p class="found severity-Medium" title="AvoidLargeClassesRule"><b>Target:</b> WoWAddonsCleaner.Form1<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidLargeClassesRule on WoWAddonsCleaner.Form1"><br><b>Severity:</b> Medium
<b>Confidence:</b> High<br><b>Details:</b> This type contains fields common prefixes: 7 fields prefixed with 'btn'.<br></span><span class="found" title="AvoidLargeClassesRule on WoWAddonsCleaner.Form1"><br><b>Severity:</b> Medium
<b>Confidence:</b> High<br><b>Details:</b> This type contains fields common prefixes: 4 fields prefixed with 'tab'.<br></span><span class="found" title="AvoidLargeClassesRule on WoWAddonsCleaner.Form1"><br><b>Severity:</b> Medium
<b>Confidence:</b> High<br><b>Details:</b> This type contains fields common prefixes: 2 fields prefixed with 'list'.<br></span><a class="go-to-rule" href="#AvoidLargeClassesRule">Go to AvoidLargeClassesRule description</a></p>
</div>
<h3>4. <a name="AvoidLongMethodsRule"></a><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Smells.AvoidLongMethodsRule(2.10)" target="AvoidLongMethodsRule">AvoidLongMethodsRule</a>
<a style="font-size: 66%;" href="#" onclick="expcol(this,'AvoidLongMethodsRule_block'); return false;">[hide]</a></h3>
<div id="AvoidLongMethodsRule_block" style="display:block;"><b>Problem:</b><p class="problem">Long methods are usually hard to understand and maintain. This method can cause problems because it contains more code than the maximum allowed.</p><b>Solution:</b><p class="solution">You should apply an Extract Method refactoring, but there are other solutions.</p><b>4 defect(s) found:</b><p class="found severity-High" title="AvoidLongMethodsRule"><b>Target:</b> System.Void WoWAddonsCleaner.AddonsScanner::scanWTFFolder()<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidLongMethodsRule on System.Void WoWAddonsCleaner.AddonsScanner::scanWTFFolder()"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Details:</b> Method IL Size: 246. Maximum Size: 165<br></span><a class="go-to-rule" href="#AvoidLongMethodsRule">Go to AvoidLongMethodsRule description</a></p>
<p class="found severity-High" title="AvoidLongMethodsRule"><b>Target:</b> System.Void WoWAddonsCleaner.AddonsScanner::scanAddonFolder()<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidLongMethodsRule on System.Void WoWAddonsCleaner.AddonsScanner::scanAddonFolder()"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Details:</b> Method IL Size: 185. Maximum Size: 165<br></span><a class="go-to-rule" href="#AvoidLongMethodsRule">Go to AvoidLongMethodsRule description</a></p>
<p class="found severity-High" title="AvoidLongMethodsRule"><b>Target:</b> System.Void WoWAddonsCleaner.AddonsScanner::removeWTF(System.Collections.Generic.Dictionary`2<System.String,System.String>)<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidLongMethodsRule on System.Void WoWAddonsCleaner.AddonsScanner::removeWTF(System.Collections.Generic.Dictionary`2<System.String,System.String>)"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Details:</b> Method IL Size: 295. Maximum Size: 165<br></span><a class="go-to-rule" href="#AvoidLongMethodsRule">Go to AvoidLongMethodsRule description</a></p>
<p class="found severity-High" title="AvoidLongMethodsRule"><b>Target:</b> System.Void WoWAddonsCleaner.Form1::scanAddons()<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidLongMethodsRule on System.Void WoWAddonsCleaner.Form1::scanAddons()"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Details:</b> Method IL Size: 198. Maximum Size: 165<br></span><a class="go-to-rule" href="#AvoidLongMethodsRule">Go to AvoidLongMethodsRule description</a></p>
</div>
<h3>5. <a name="AvoidRepetitiveCallsToPropertiesRule"></a><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidRepetitiveCallsToPropertiesRule(2.10)" target="AvoidRepetitiveCallsToPropertiesRule">AvoidRepetitiveCallsToPropertiesRule</a>
<a style="font-size: 66%;" href="#" onclick="expcol(this,'AvoidRepetitiveCallsToPropertiesRule_block'); return false;">[hide]</a></h3>
<div id="AvoidRepetitiveCallsToPropertiesRule_block" style="display:block;"><b>Problem:</b><p class="problem">This method calls several times into the same properties. This is expensive for virtual properties or when the property cannot be inlined.</p><b>Solution:</b><p class="solution">Unless a different value is expected from each call, refactor your code to avoid the multiple calls by caching the returned value.</p><b>15 defect(s) found:</b><p class="found severity-Low" title="AvoidRepetitiveCallsToPropertiesRule"><b>Target:</b> System.Void WoWAddonsCleaner.AddonsScanner::scanWTFFolder()<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidRepetitiveCallsToPropertiesRule on System.Void WoWAddonsCleaner.AddonsScanner::scanWTFFolder()"><br><b>Severity:</b> Low
<b>Confidence:</b> Normal<br><b>Details:</b> Multiple (2) calls to virtual property 'System.String System.IO.FileSystemInfo::get_Name()'.<br></span><span class="found" title="AvoidRepetitiveCallsToPropertiesRule on System.Void WoWAddonsCleaner.AddonsScanner::scanWTFFolder()"><br><b>Severity:</b> Low
<b>Confidence:</b> Normal<br><b>Details:</b> Multiple (2) calls to virtual property 'System.String System.IO.FileSystemInfo::get_Name()'.<br></span><a class="go-to-rule" href="#AvoidRepetitiveCallsToPropertiesRule">Go to AvoidRepetitiveCallsToPropertiesRule description</a></p>
<p class="found severity-Low" title="AvoidRepetitiveCallsToPropertiesRule"><b>Target:</b> System.Void WoWAddonsCleaner.AddonsScanner::scanAddonFolder()<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidRepetitiveCallsToPropertiesRule on System.Void WoWAddonsCleaner.AddonsScanner::scanAddonFolder()"><br><b>Severity:</b> Low
<b>Confidence:</b> Normal<br><b>Details:</b> Multiple (2) calls to virtual property 'System.String System.IO.FileSystemInfo::get_Name()'.<br></span><a class="go-to-rule" href="#AvoidRepetitiveCallsToPropertiesRule">Go to AvoidRepetitiveCallsToPropertiesRule description</a></p>
<p class="found severity-Low" title="AvoidRepetitiveCallsToPropertiesRule"><b>Target:</b> System.Void WoWAddonsCleaner.AddonsScanner::removeCharacter(System.String,System.String,System.String)<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidRepetitiveCallsToPropertiesRule on System.Void WoWAddonsCleaner.AddonsScanner::removeCharacter(System.String,System.String,System.String)"><br><b>Severity:</b> Low
<b>Confidence:</b> Normal<br><b>Details:</b> Multiple (4) calls to non-virtual property 'System.IO.DirectoryInfo System.IO.DirectoryInfo::get_Parent()', likely non-inlined due to size (97 >= 20).<br></span><a class="go-to-rule" href="#AvoidRepetitiveCallsToPropertiesRule">Go to AvoidRepetitiveCallsToPropertiesRule description</a></p>
<p class="found severity-Medium" title="AvoidRepetitiveCallsToPropertiesRule"><b>Target:</b> System.Void WoWAddonsCleaner.Form1::txtWoWFolder_TextChanged(System.Object,System.EventArgs)<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidRepetitiveCallsToPropertiesRule on System.Void WoWAddonsCleaner.Form1::txtWoWFolder_TextChanged(System.Object,System.EventArgs)"><br><b>Severity:</b> Medium
<b>Confidence:</b> Normal<br><b>Details:</b> Multiple (3) calls to virtual property 'System.String System.Windows.Forms.Control::get_Text()'.<br></span><a class="go-to-rule" href="#AvoidRepetitiveCallsToPropertiesRule">Go to AvoidRepetitiveCallsToPropertiesRule description</a></p>
<p class="found severity-Low" title="AvoidRepetitiveCallsToPropertiesRule"><b>Target:</b> System.Void WoWAddonsCleaner.Form1::scanAddons()<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidRepetitiveCallsToPropertiesRule on System.Void WoWAddonsCleaner.Form1::scanAddons()"><br><b>Severity:</b> Low
<b>Confidence:</b> Normal<br><b>Details:</b> Multiple (2) calls to non-virtual property 'System.Windows.Forms.TreeNodeCollection System.Windows.Forms.TreeView::get_Nodes()', likely non-inlined due to size (32 >= 20).<br></span><span class="found" title="AvoidRepetitiveCallsToPropertiesRule on System.Void WoWAddonsCleaner.Form1::scanAddons()"><br><b>Severity:</b> Low
<b>Confidence:</b> Normal<br><b>Details:</b> Multiple (2) calls to non-virtual property 'System.Windows.Forms.ListViewItem/ListViewSubItemCollection System.Windows.Forms.ListViewItem::get_SubItems()', likely non-inlined due to size (73 >= 20).<br></span><a class="go-to-rule" href="#AvoidRepetitiveCallsToPropertiesRule">Go to AvoidRepetitiveCallsToPropertiesRule description</a></p>
<p class="found severity-Low" title="AvoidRepetitiveCallsToPropertiesRule"><b>Target:</b> System.Void WoWAddonsCleaner.Form1::btnDeleteCharacter_Click(System.Object,System.EventArgs)<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidRepetitiveCallsToPropertiesRule on System.Void WoWAddonsCleaner.Form1::btnDeleteCharacter_Click(System.Object,System.EventArgs)"><br><b>Severity:</b> Low
<b>Confidence:</b> Normal<br><b>Details:</b> Multiple (2) calls to non-virtual property 'System.Int32 System.Windows.Forms.TreeNode::get_Level()', likely non-inlined due to size (24 >= 20).<br></span><a class="go-to-rule" href="#AvoidRepetitiveCallsToPropertiesRule">Go to AvoidRepetitiveCallsToPropertiesRule description</a></p>
<p class="found severity-Low" title="AvoidRepetitiveCallsToPropertiesRule"><b>Target:</b> System.Void WoWAddonsCleaner.Form1::btnDeleteOrphanAddons_Click(System.Object,System.EventArgs)<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidRepetitiveCallsToPropertiesRule on System.Void WoWAddonsCleaner.Form1::btnDeleteOrphanAddons_Click(System.Object,System.EventArgs)"><br><b>Severity:</b> Low
<b>Confidence:</b> Normal<br><b>Details:</b> Multiple (2) calls to non-virtual property 'System.Windows.Forms.ListView/SelectedListViewItemCollection System.Windows.Forms.ListView::get_SelectedItems()', likely non-inlined due to size (27 >= 20).<br></span><a class="go-to-rule" href="#AvoidRepetitiveCallsToPropertiesRule">Go to AvoidRepetitiveCallsToPropertiesRule description</a></p>
<p class="found severity-Low" title="AvoidRepetitiveCallsToPropertiesRule"><b>Target:</b> System.Void WoWAddonsCleaner.Form1::btnDeleteOrphanWTF_Click(System.Object,System.EventArgs)<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidRepetitiveCallsToPropertiesRule on System.Void WoWAddonsCleaner.Form1::btnDeleteOrphanWTF_Click(System.Object,System.EventArgs)"><br><b>Severity:</b> Low
<b>Confidence:</b> Normal<br><b>Details:</b> Multiple (2) calls to non-virtual property 'System.Windows.Forms.ListView/SelectedListViewItemCollection System.Windows.Forms.ListView::get_SelectedItems()', likely non-inlined due to size (27 >= 20).<br></span><a class="go-to-rule" href="#AvoidRepetitiveCallsToPropertiesRule">Go to AvoidRepetitiveCallsToPropertiesRule description</a></p>
<p class="found severity-Low" title="AvoidRepetitiveCallsToPropertiesRule"><b>Target:</b> System.Void WoWAddonsCleaner.Form1::InitializeComponent()<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidRepetitiveCallsToPropertiesRule on System.Void WoWAddonsCleaner.Form1::InitializeComponent()"><br><b>Severity:</b> Low
<b>Confidence:</b> Normal<br><b>Details:</b> Multiple (3) calls to non-virtual property 'System.Windows.Forms.Control/ControlCollection System.Windows.Forms.Control::get_Controls()', likely non-inlined due to size (51 >= 20).<br></span><span class="found" title="AvoidRepetitiveCallsToPropertiesRule on System.Void WoWAddonsCleaner.Form1::InitializeComponent()"><br><b>Severity:</b> Low
<b>Confidence:</b> Normal<br><b>Details:</b> Multiple (3) calls to non-virtual property 'System.Windows.Forms.Control/ControlCollection System.Windows.Forms.Control::get_Controls()', likely non-inlined due to size (51 >= 20).<br></span><span class="found" title="AvoidRepetitiveCallsToPropertiesRule on System.Void WoWAddonsCleaner.Form1::InitializeComponent()"><br><b>Severity:</b> Low
<b>Confidence:</b> Normal<br><b>Details:</b> Multiple (2) calls to non-virtual property 'System.Windows.Forms.Control/ControlCollection System.Windows.Forms.Control::get_Controls()', likely non-inlined due to size (51 >= 20).<br></span><span class="found" title="AvoidRepetitiveCallsToPropertiesRule on System.Void WoWAddonsCleaner.Form1::InitializeComponent()"><br><b>Severity:</b> Low
<b>Confidence:</b> Normal<br><b>Details:</b> Multiple (3) calls to non-virtual property 'System.Windows.Forms.Control/ControlCollection System.Windows.Forms.Control::get_Controls()', likely non-inlined due to size (51 >= 20).<br></span><span class="found" title="AvoidRepetitiveCallsToPropertiesRule on System.Void WoWAddonsCleaner.Form1::InitializeComponent()"><br><b>Severity:</b> Low
<b>Confidence:</b> Normal<br><b>Details:</b> Multiple (4) calls to non-virtual property 'System.Windows.Forms.Control/ControlCollection System.Windows.Forms.Control::get_Controls()', likely non-inlined due to size (51 >= 20).<br></span><a class="go-to-rule" href="#AvoidRepetitiveCallsToPropertiesRule">Go to AvoidRepetitiveCallsToPropertiesRule description</a></p>
</div>
<h3>6. <a name="AvoidUncalledPrivateCodeRule"></a><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidUncalledPrivateCodeRule(2.10)" target="AvoidUncalledPrivateCodeRule">AvoidUncalledPrivateCodeRule</a>
<a style="font-size: 66%;" href="#" onclick="expcol(this,'AvoidUncalledPrivateCodeRule_block'); return false;">[hide]</a></h3>
<div id="AvoidUncalledPrivateCodeRule_block" style="display:block;"><b>Problem:</b><p class="problem">This private or internal (assembly-level) member does not have callers in the assembly, is not invoked by the common language runtime, and is not invoked by a delegate.</p><b>Solution:</b><p class="solution">Remove the unused code or add code to call it.</p><b>2 defect(s) found:</b><p class="found severity-High" title="AvoidUncalledPrivateCodeRule"><b>Target:</b> System.Void WoWAddonsCleaner.AddonsScanner::clearScan()<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidUncalledPrivateCodeRule on System.Void WoWAddonsCleaner.AddonsScanner::clearScan()"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Details:</b> The method is not visible outside its declaring assembly, nor used within.<br></span><a class="go-to-rule" href="#AvoidUncalledPrivateCodeRule">Go to AvoidUncalledPrivateCodeRule description</a></p>
<p class="found severity-High" title="AvoidUncalledPrivateCodeRule"><b>Target:</b> System.Void WoWAddonsCleaner.IndexedHashSet::AddOrUpdate(System.String,System.String)<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidUncalledPrivateCodeRule on System.Void WoWAddonsCleaner.IndexedHashSet::AddOrUpdate(System.String,System.String)"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Details:</b> The method is not visible outside its declaring assembly, nor used within.<br></span><a class="go-to-rule" href="#AvoidUncalledPrivateCodeRule">Go to AvoidUncalledPrivateCodeRule description</a></p>
</div>
<h3>7. <a name="AvoidUnnecessarySpecializationRule"></a><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Maintainability.AvoidUnnecessarySpecializationRule(2.10)" target="AvoidUnnecessarySpecializationRule">AvoidUnnecessarySpecializationRule</a>
<a style="font-size: 66%;" href="#" onclick="expcol(this,'AvoidUnnecessarySpecializationRule_block'); return false;">[hide]</a></h3>
<div id="AvoidUnnecessarySpecializationRule_block" style="display:block;"><b>Problem:</b><p class="problem">This method has a parameter whose type is more specialized than necessary. This can make it difficult to reuse the method in other contexts.</p><b>Solution:</b><p class="solution">Replace the parameter type with the most general type which will work or make use of the specifics of the formal parameter type.</p><b>1 defect(s) found:</b><p class="found severity-Medium" title="AvoidUnnecessarySpecializationRule"><b>Target:</b> System.Void WoWAddonsCleaner.AddonsScanner::removeAddons(System.Collections.Generic.List`1<System.String>)<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidUnnecessarySpecializationRule on System.Void WoWAddonsCleaner.AddonsScanner::removeAddons(System.Collections.Generic.List`1<System.String>)"><br><b>Severity:</b> Medium
<b>Confidence:</b> High<br><b>Details:</b> Parameter 'addons' could be of type 'System.Collections.Generic.IEnumerable<T>'.<br></span><a class="go-to-rule" href="#AvoidUnnecessarySpecializationRule">Go to AvoidUnnecessarySpecializationRule description</a></p>
</div>
<h3>8. <a name="AvoidUnneededCallsOnStringRule"></a><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidUnneededCallsOnStringRule(2.10)" target="AvoidUnneededCallsOnStringRule">AvoidUnneededCallsOnStringRule</a>
<a style="font-size: 66%;" href="#" onclick="expcol(this,'AvoidUnneededCallsOnStringRule_block'); return false;">[hide]</a></h3>
<div id="AvoidUnneededCallsOnStringRule_block" style="display:block;"><b>Problem:</b><p class="problem">This method needlessly calls some method(s) on a string instance. This may produce some performance penalities.</p><b>Solution:</b><p class="solution">Remove the unneeded call(s) on the string instance.</p><b>3 defect(s) found:</b><p class="found severity-Medium" title="AvoidUnneededCallsOnStringRule"><b>Target:</b> System.Void WoWAddonsCleaner.Form1::btnDeleteOrphanAddons_Click(System.Object,System.EventArgs)<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidUnneededCallsOnStringRule on System.Void WoWAddonsCleaner.Form1::btnDeleteOrphanAddons_Click(System.Object,System.EventArgs)"><br><b>Severity:</b> Medium
<b>Confidence:</b> Normal<br><b>Source:</b> debugging symbols unavailable, IL offset 0x0053<br><b>Details:</b> There is no need to call ToString() on a System.String instance.<br></span><a class="go-to-rule" href="#AvoidUnneededCallsOnStringRule">Go to AvoidUnneededCallsOnStringRule description</a></p>
<p class="found severity-Medium" title="AvoidUnneededCallsOnStringRule"><b>Target:</b> System.Void WoWAddonsCleaner.Form1::btnDeleteOrphanWTF_Click(System.Object,System.EventArgs)<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidUnneededCallsOnStringRule on System.Void WoWAddonsCleaner.Form1::btnDeleteOrphanWTF_Click(System.Object,System.EventArgs)"><br><b>Severity:</b> Medium
<b>Confidence:</b> Normal<br><b>Source:</b> debugging symbols unavailable, IL offset 0x0053<br><b>Details:</b> There is no need to call ToString() on a System.String instance.<br></span><span class="found" title="AvoidUnneededCallsOnStringRule on System.Void WoWAddonsCleaner.Form1::btnDeleteOrphanWTF_Click(System.Object,System.EventArgs)"><br><b>Severity:</b> Medium
<b>Confidence:</b> Normal<br><b>Source:</b> debugging symbols unavailable, IL offset 0x0069<br><b>Details:</b> There is no need to call ToString() on a System.String instance.<br></span><a class="go-to-rule" href="#AvoidUnneededCallsOnStringRule">Go to AvoidUnneededCallsOnStringRule description</a></p>
</div>
<h3>9. <a name="AvoidUnsealedUninheritedInternalTypeRule"></a><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.AvoidUnsealedUninheritedInternalTypeRule(2.10)" target="AvoidUnsealedUninheritedInternalTypeRule">AvoidUnsealedUninheritedInternalTypeRule</a>
<a style="font-size: 66%;" href="#" onclick="expcol(this,'AvoidUnsealedUninheritedInternalTypeRule_block'); return false;">[hide]</a></h3>
<div id="AvoidUnsealedUninheritedInternalTypeRule_block" style="display:block;"><b>Problem:</b><p class="problem">Due to performance issues, types which are not visible outside of the assembly and which have no derived types should be sealed.</p><b>Solution:</b><p class="solution">You should seal this type, unless you plan to inherit from this type in the near-future.</p><b>2 defect(s) found:</b><p class="found severity-Medium" title="AvoidUnsealedUninheritedInternalTypeRule"><b>Target:</b> WoWAddonsCleaner.AddonsScanner<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidUnsealedUninheritedInternalTypeRule on WoWAddonsCleaner.AddonsScanner"><br><b>Severity:</b> Medium
<b>Confidence:</b> Total<br></span><a class="go-to-rule" href="#AvoidUnsealedUninheritedInternalTypeRule">Go to AvoidUnsealedUninheritedInternalTypeRule description</a></p>
<p class="found severity-Medium" title="AvoidUnsealedUninheritedInternalTypeRule"><b>Target:</b> WoWAddonsCleaner.IndexedHashSet<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="AvoidUnsealedUninheritedInternalTypeRule on WoWAddonsCleaner.IndexedHashSet"><br><b>Severity:</b> Medium
<b>Confidence:</b> Total<br></span><a class="go-to-rule" href="#AvoidUnsealedUninheritedInternalTypeRule">Go to AvoidUnsealedUninheritedInternalTypeRule description</a></p>
</div>
<h3>10. <a name="CompareWithEmptyStringEfficientlyRule"></a><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.CompareWithEmptyStringEfficientlyRule(2.10)" target="CompareWithEmptyStringEfficientlyRule">CompareWithEmptyStringEfficientlyRule</a>
<a style="font-size: 66%;" href="#" onclick="expcol(this,'CompareWithEmptyStringEfficientlyRule_block'); return false;">[hide]</a></h3>
<div id="CompareWithEmptyStringEfficientlyRule_block" style="display:block;"><b>Problem:</b><p class="problem">This method compares a string with an empty string by using the Equals method or the equality (==) or inequality (!=) operators.</p><b>Solution:</b><p class="solution">Compare String.Length with 0 instead. The string length is known and it's faster to compare integers than to compare strings.</p><b>1 defect(s) found:</b><p class="found severity-Medium" title="CompareWithEmptyStringEfficientlyRule"><b>Target:</b> System.Void WoWAddonsCleaner.Form1::txtWoWFolder_TextChanged(System.Object,System.EventArgs)<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="CompareWithEmptyStringEfficientlyRule on System.Void WoWAddonsCleaner.Form1::txtWoWFolder_TextChanged(System.Object,System.EventArgs)"><br><b>Severity:</b> Medium
<b>Confidence:</b> High<br><b>Source:</b> debugging symbols unavailable, IL offset 0x0010<br></span><a class="go-to-rule" href="#CompareWithEmptyStringEfficientlyRule">Go to CompareWithEmptyStringEfficientlyRule description</a></p>
</div>
<h3>11. <a name="DoNotIgnoreMethodResultRule"></a><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Performance.DoNotIgnoreMethodResultRule(2.10)" target="DoNotIgnoreMethodResultRule">DoNotIgnoreMethodResultRule</a>
<a style="font-size: 66%;" href="#" onclick="expcol(this,'DoNotIgnoreMethodResultRule_block'); return false;">[hide]</a></h3>
<div id="DoNotIgnoreMethodResultRule_block" style="display:block;"><b>Problem:</b><p class="problem">The method ignores the result value from a method call.</p><b>Solution:</b><p class="solution">Don't ignore the result value.</p><b>1 defect(s) found:</b><p class="found severity-High" title="DoNotIgnoreMethodResultRule"><b>Target:</b> System.Void WoWAddonsCleaner.AddonsScanner::removeWTF(System.Collections.Generic.Dictionary`2<System.String,System.String>)<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="DoNotIgnoreMethodResultRule on System.Void WoWAddonsCleaner.AddonsScanner::removeWTF(System.Collections.Generic.Dictionary`2<System.String,System.String>)"><br><b>Severity:</b> High
<b>Confidence:</b> Normal<br><b>Source:</b> debugging symbols unavailable, IL offset 0x001d<br><b>Details:</b> Unused object of type 'System.Void System.IO.DirectoryInfo::.ctor(System.String)' created.<br></span><a class="go-to-rule" href="#DoNotIgnoreMethodResultRule">Go to DoNotIgnoreMethodResultRule description</a></p>
</div>
<h3>12. <a name="EnsureLocalDisposalRule"></a><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Correctness.EnsureLocalDisposalRule(2.10)" target="EnsureLocalDisposalRule">EnsureLocalDisposalRule</a>
<a style="font-size: 66%;" href="#" onclick="expcol(this,'EnsureLocalDisposalRule_block'); return false;">[hide]</a></h3>
<div id="EnsureLocalDisposalRule_block" style="display:block;"><b>Problem:</b><p class="problem">This disposable local is not guaranteed to be disposed of before the method returns.</p><b>Solution:</b><p class="solution">Use a 'using' statement or surround the local's usage with a try/finally block.</p><b>1 defect(s) found:</b><p class="found severity-High" title="EnsureLocalDisposalRule"><b>Target:</b> System.Void WoWAddonsCleaner.Program::Main()<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="EnsureLocalDisposalRule on System.Void WoWAddonsCleaner.Program::Main()"><br><b>Severity:</b> High
<b>Confidence:</b> High<br><b>Source:</b> debugging symbols unavailable, IL offset 0x000b<br><b>Details:</b> Local of type 'Form1' is not disposed of (at least not locally).<br></span><a class="go-to-rule" href="#EnsureLocalDisposalRule">Go to EnsureLocalDisposalRule description</a></p>
</div>
<h3>13. <a name="MarkAssemblyWithCLSCompliantRule"></a><a href="https://github.com/spouliot/gendarme/wiki/Gendarme.Rules.Design.MarkAssemblyWithCLSCompliantRule(2.10)" target="MarkAssemblyWithCLSCompliantRule">MarkAssemblyWithCLSCompliantRule</a>
<a style="font-size: 66%;" href="#" onclick="expcol(this,'MarkAssemblyWithCLSCompliantRule_block'); return false;">[hide]</a></h3>
<div id="MarkAssemblyWithCLSCompliantRule_block" style="display:block;"><b>Problem:</b><p class="problem">This assembly is not decorated with the [CLSCompliant] attribute.</p><b>Solution:</b><p class="solution">Add this attribute to ease the use (or non-use) of your assembly by CLS consumers.</p><b>1 defect(s) found:</b><p class="found severity-High" title="MarkAssemblyWithCLSCompliantRule"><b>Target:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><b>Assembly:</b> WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null<br><span class="found" title="MarkAssemblyWithCLSCompliantRule on WoWAddonsCleaner, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"><br><b>Severity:</b> High
<b>Confidence:</b> Total<br></span><a class="go-to-rule" href="#MarkAssemblyWithCLSCompliantRule">Go to MarkAssemblyWithCLSCompliantRule description</a></p>