#develop (short for SharpDevelop) is a free IDE for .NET programming languages.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Daniel Grunwald 64b8217fb0 Don't produce NegativeRelationalExpressionIssue inside operator declarations 13 years ago
..
FormatStringIssues [CodeIssues] RedundantToStringIssue: Also check formatting calls. 13 years ago
ParameterCanBeDemotedIssue [CodeIssues] Don't suggest demoting parameters of program entry points. 13 years ago
AccessToDisposedClosureTests.cs
AccessToModifiedClosureTests.cs [Refactoring] Script now corrects the formatting of inserted & 13 years ago
AssignmentMadeToSameVariableIssueTests.cs AssignmentMadeToSameVariableIssue: don't warn on "a += a;" 13 years ago
BitwiseOperationOnNonFlagsEnumIssueTests.cs
CallToObjectEqualsViaBaseTests.cs [CodeIssues] CallToObjectViaBaseIssue: Ignore calls which do not target members of 'base'. 13 years ago
CallToVirtualFunctionFromConstructorTests.cs CallToVirtualFunctionFromConstructorIssue: avoid false positive when the call appears in an anonymous method 13 years ago
CastExpressionOfIncompatibleTypeIssueTests.cs CastExpressionOfIncompatibleTypeIssue: don't produce an issue when the source or target type is unknown. 13 years ago
CompareBooleanWithTrueOrFalseIssueTests.cs [CodeIssues] CompareBooleanWithTrueOrFalseIssue: check if the expression being compared is of boolean type 13 years ago
CompareFloatWithEqualityOperatorIssueTests.cs [CodeIssue] CompareFloatWithEqualityOperator: handle a failed test case 13 years ago
ConditionalToNullCoalescingInspectorTests.cs
ConstantConditionIssueTests.cs [Refactoring] Script now corrects the formatting of inserted & 13 years ago
DoubleNegationIssueTests.cs [CodeIssue] Added DoubleNegationIssue 13 years ago
ExceptionRethrowTests.cs [CodeIssues] Add ExceptionRethrowIssue 13 years ago
ExplicitConversionInForEachIssueTests.cs
ExpressionIsAlwaysOfProvidedTypeIssueTests.cs Fixed false positive that caused a 'is operator always returns true' warning even though it returns false. (e.g. 'intVar is double') 13 years ago
ExpressionIsNeverOfProvidedTypeIssueTests.cs Don't show "expression is never of the provided type" warning if the type could not be resolved. 13 years ago
ForControlVariableNotModifiedIssueTests.cs
IdenticalConditionalBranchIssueTests.cs
InconsistentNamingTests.cs
IncorrectCallToGetHashCodeTests.cs [CodeIssues] Check method names before concluding there is a problem. 13 years ago
IncorrectExceptionParameterOrderingTests.cs Fix NullReferenceException in IncorrectExceptionParameterOrderingIssue. 13 years ago
InspectionActionTestBase.cs [Refactoring] Script now corrects the formatting of inserted & 13 years ago
LocalVariableHidesMemberIssueTests.cs [CodeIssues] Add accessibility checking to VariableHidesMemberIssue. 13 years ago
LocalVariableNotUsedIssueTests.cs
MethodNeverReturnsIssueTests.cs Don't show 'method never returns' for iterators containing 'yield break;' 13 years ago
MethodOverloadHidesOptionalParameterIssueTests.cs Don't show 'Method with optional parameter is hidden by overload' issue if the overloads have different type parameters. 13 years ago
MissingStringComparisonIssueTests.cs Add issue provider for missing StringComparison argument to string.StartsWith/EndsWith/IndexOf/LastIndexOf calls. 13 years ago
MultipleEnumerationIssueTests.cs
NegativeRelationalExpressionIssueTests.cs Don't produce NegativeRelationalExpressionIssue inside operator declarations 13 years ago
NotImplementedExceptionInspectorTests.cs
OptionalParameterCouldBeSkippedTests.cs [CodeActions] Greatly improved OptionalParameterCouldBeSkippedIssue. 13 years ago
ParameterHidesMemberIssueTests.cs [CodeIssues] Add accessibility checking to VariableHidesMemberIssue. 13 years ago
ParameterNotUsedIssueTests.cs ParameterNotUsedIssue: add heuristic that prevents false positives for event handler methods when the event is registered in designer-generated code. 13 years ago
ParameterOnlyAssignedIssueTests.cs [CodeIssues] Do not report unused parameter if it is out or ref. 13 years ago
RedundantArrayInitializerCommaIssueTests.cs [CodeIssues] RedundantArrayInitializerCommaIssue: show appropriate description for different types of initializers 13 years ago
RedundantAssignmentIssueTests.cs * RedundantAssignmentIssue.cs: [CodeIssues] Redundant assignment 13 years ago
RedundantAttributeParenthesesIssueTests.cs [CodeIssue] Added RedundantAttributeParenthesesIssue 13 years ago
RedundantCaseLabelIssueTests.cs [CodeIssue] Added RedundantCaseLabelIssue 13 years ago
RedundantCatchTests.cs [CodeIssues] Don't consider empty catches redundant. 13 years ago
RedundantElseIssueTests.cs [CodeIssues] Fixed case in redundant else issue. 13 years ago
RedundantFieldInitializerIssueTests.cs [CodeIssues] RedundantFieldInitializerIssue: handle some number type initializer cases 13 years ago
RedundantInternalInspectorTests.cs
RedundantNamespaceUsageInspectorTests.cs Fix #120: RedundantNamespaceUsageIssue bad handling of using aliases 13 years ago
RedundantObjectCreationArgumentListIssueTests.cs [CodeIssue] Added RedundantObjectCreationArgumentListIssue 13 years ago
RedundantObjectOrCollectionInitializerIssueTests.cs [CodeIssue] RedundantObjectOrCollectionInitializerIssue: added some tests 13 years ago
RedundantPrivateInspectorTests.cs
RedundantThisInspectorTests.cs
RedundantToStringTests.cs [Refactoring] Script now corrects the formatting of inserted & 13 years ago
RedundantTypeCastIssueTests.cs [CodeIssue] Fixed bug in redundant type cast issue. 13 years ago
RedundantUsingInspectorTests.cs
RedundantWhereWithPredicateIssueTests.cs RedundantWhereWithPredicateIssue: in addition to Any(), handle Count(),First(),FirstOrDefault(),Last(),LastOrDefault(),LongCount(),Single() and SingleOrDefault(). 13 years ago
ReferenceEqualsCalledWithValueTypeIssueTest.cs [CodeIssue] Added ReferenceEqualsCalledWithValueTypeIssue 13 years ago
ReferenceToStaticMemberViaDerivedTypeTests.cs Reference to static member via derived type: ignore curiously recurring template pattern 13 years ago
StaticFieldInGenericTypeTests.cs [CodeIssues] Don't warn about static fields in generic types if the field declaration uses all type parameters. 13 years ago
StringIsNullOrEmptyInspectorTests.cs [CodeIssues] Added type checking to string is null or empty issue. 13 years ago
ThreadStaticOnInstanceFieldTests.cs [CodeIssues] Add ThreadStaticOnInstanceFieldsIssue. 13 years ago
TypeParameterNotUsedIssueTests.cs
UnreachableCodeIssueTests.cs [Resolver] Local resolve result no longer returns a constant value for 13 years ago
UseVarKeywordInspectorTests.cs
ValueParameterUnusedTests.cs Don't warn on empty custom events. 13 years ago
VariableDeclaredInWideScopeTests.cs [CodeIssues] Added failing test case for variable declared in wide 13 years ago