#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.
 
 
 
 
 
 
Simon Lindgren 7ad55831ac [CodeIssues] Add accessibility checking to VariableHidesMemberIssue. 13 years ago
..
AccessToClosureIssues Fix InvalidCastException in AccessToClosureIssue. 13 years ago
FormatStringIssues Add fast check to discard most invocations early in FormatStringIssue. 14 years ago
InconsistentNamingIssue Move some code actions from 'CodeActions' namespace to refactoring namespace, to be consistent with all other code actions. 13 years ago
ParameterCanBeDemotedIssue [CodeIssues] Removed some debug spew. 14 years ago
VariableHidesMemberIssue [CodeIssues] Add accessibility checking to VariableHidesMemberIssue. 13 years ago
VariableNotUsedIssues [CodeIssues] Fixed unused parameters for methods used as delegates and 13 years ago
VariableOnlyAssignedIssues [CodeIssues] Removed LocalVariableOnlyAssignedIssue - it's redundant 13 years ago
AssignmentMadeToSameVariableIssue.cs AssignmentMadeToSameVariableIssue: don't warn on "a += a;" 13 years ago
BitwiseOperationOnNonFlagsEnumIssue.cs [CodeIssue] Added BitwiseOperationOnNonFlagsEnumIssue 14 years ago
CallToObjectEqualsViaBaseIssue.cs [CodeIssues] Check method names before concluding there is a problem. 14 years ago
CallToVirtualFunctionFromConstructorIssue.cs [CodeIssues] Make CallToVirtualFunctionFromConstructorIssue less whiny. 14 years ago
CastExpressionOfIncompatibleTypeIssue.cs CastExpressionOfIncompatibleTypeIssue: don't produce an issue when the source or target type is unknown. 13 years ago
CompareBooleanWithTrueOrFalseIssue.cs [CodeIssues] CompareBooleanWithTrueOrFalseIssue: check if the expression being compared is of boolean type 14 years ago
CompareFloatWithEqualityOperatorIssue.cs CompareFloatWithEqualityOperatorIssue: use short name for System.Math if possible. 13 years ago
ConditionalToNullCoalescingIssue.cs Made it easier to get the issues out of the gather visitor. 14 years ago
ConstantConditionIssue.cs [CodeIssues] ConstantConditionIssue: check if condition is compile time constant to avoid fake warnings 14 years ago
DoubleNegationIssue.cs [CodeIssue] Added DoubleNegationIssue 14 years ago
ExceptionRethrowIssue.cs [CodeIssues] Add ExceptionRethrowIssue 14 years ago
ExplicitConversionInForEachIssue.cs Made it easier to get the issues out of the gather visitor. 14 years ago
ExpressionIsAlwaysOfProvidedTypeIssue.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
ExpressionIsNeverOfProvidedTypeIssue.cs Don't show "expression is never of the provided type" warning if the type could not be resolved. 13 years ago
ForControlVariableNotModifiedIssue.cs [CodeIssues] Add helper FindReferences(AstNode, IVariable) to BaseRefactoringContext. 14 years ago
GatherVisitorBase.cs Added some documentation. 14 years ago
IdenticalConditionalBranchIssue.cs [CodeIssue] IdenticalConditionalBranchIssue: use a better title 14 years ago
IncorrectCallToObjectGetHashCodeIssue.cs [CodeIssues] Check method names before concluding there is a problem. 14 years ago
IncorrectExceptionParameterOrderingIssue.cs Fix NullReferenceException in IncorrectExceptionParameterOrderingIssue. 13 years ago
IssueCategories.cs Added compiler warnings & errors issue categories. 14 years ago
MethodNeverReturnsIssue.cs Don't show 'method never returns' for iterators containing 'yield break;' 13 years ago
MethodOverloadHidesOptionalParameterIssue.cs Don't show 'Method with optional parameter is hidden by overload' issue if the overloads have different type parameters. 13 years ago
MissingStringComparisonIssue.cs Add issue provider for missing StringComparison argument to string.StartsWith/EndsWith/IndexOf/LastIndexOf calls. 13 years ago
MultipleEnumerationIssue.cs [CodeIssues] Fixed concurrency issue in variable reference graph. 14 years ago
NegativeRelationalExpressionIssue.cs [CodeIssue] NegativeRelationalExpressionIssue: no longer report issues for floating-point operations 14 years ago
NotImplementedExceptionIssue.cs Made it easier to get the issues out of the gather visitor. 14 years ago
OptionalParameterCouldBeSkippedIssue.cs Add check to disqualify most invocations early in OptionalParameterCouldBeSkippedIssue. 14 years ago
RedundantArrayInitializerCommaIssue.cs [CodeIssues] RedundantArrayInitializerCommaIssue: show appropriate description for different types of initializers 14 years ago
RedundantAssignmentIssue.cs [CodeIssues] Fixed concurrency issue in variable reference graph. 14 years ago
RedundantAttributeParenthesesIssue.cs [CodeIssue] Added RedundantAttributeParenthesesIssue 14 years ago
RedundantCaseLabelIssue.cs [CodeIssues] Removed some unused usings 14 years ago
RedundantCatchIssue.cs [CodeIssues] Don't consider empty catches redundant. 14 years ago
RedundantElseIssue.cs [CodeIssue]RedundantElseIssue: changed Severity to Warning 14 years ago
RedundantFieldInitializerIssue.cs [CodeIssues] ')edundant field initializer' issue no longer greys out 14 years ago
RedundantInternalIssue.cs Made it easier to get the issues out of the gather visitor. 14 years ago
RedundantNamespaceUsageIssue.cs Fix #120: RedundantNamespaceUsageIssue bad handling of using aliases 13 years ago
RedundantObjectCreationArgumentListIssue.cs [CodeIssue] Added RedundantObjectCreationArgumentListIssue 14 years ago
RedundantObjectOrCollectionInitializerIssue.cs [CodeIssue] Added RedundantObjectOrCollectionInitializerIssue 14 years ago
RedundantPrivateIssue.cs [CodeIssue] removed '.' in name. 14 years ago
RedundantThisIssue.cs [CodeIssues] Converted IgnoreConstructors to a property. 14 years ago
RedundantToStringIssue.cs Speed up RedundantToStringIssue a bit. 14 years ago
RedundantTypeCastIssue.cs [CodeIssue] Fixed bug in redundant type cast issue. 14 years ago
RedundantUsingIssue.cs Made it easier to get the issues out of the gather visitor. 14 years ago
RedundantWhereWithPredicateIssue.cs RedundantWhereWithPredicateIssue: in addition to Any(), handle Count(),First(),FirstOrDefault(),Last(),LastOrDefault(),LongCount(),Single() and SingleOrDefault(). 13 years ago
ReferenceEqualsCalledWithValueTypeIssue.cs Add fast check to discard most invocations early in ReferenceEqualsCalledWithValueTypeIssue. 14 years ago
ReferenceToStaticMemberViaDerivedTypeIssue.cs Reference to static member via derived type: ignore curiously recurring template pattern 13 years ago
ResultOfAsyncCallShouldNotBeIgnoredIssue.cs Add issue provider for missing StringComparison argument to string.StartsWith/EndsWith/IndexOf/LastIndexOf calls. 13 years ago
StaticFieldInGenericTypeIssue.cs [CodeIssues] Don't warn about static fields in generic types if the field declaration uses all type parameters. 14 years ago
StringIsNullOrEmptyIssue.cs [CodeIssues] Added type checking to string is null or empty issue. 13 years ago
ThreadStaticOnInstanceFieldIssue.cs [CodeIssues] Add ThreadStaticOnInstanceFieldsIssue. 14 years ago
TypeParameterNotUsedIssue.cs [Refactoring] track renaming of ParsedFile to UnresolvedFile 14 years ago
UnreachableCodeIssue.cs [CodeIssue] Added UnreachableCodeIssue 14 years ago
UseVarKeywordIssue.cs Made it easier to get the issues out of the gather visitor. 14 years ago
ValueParameterUnusedIssue.cs Don't warn on empty custom events. 13 years ago
VariableDeclaredInWideScopeIssue.cs Fixed possible null reference exception. 14 years ago