#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.
 
 
 
 
 
 
Ciprian Khlud bd486b50b0 Code updates 13 years ago
..
FormatStringIssues
ParameterCanBeDemotedIssue Code updates 13 years ago
AccessToDisposedClosureTests.cs
AccessToModifiedClosureTests.cs [Refactoring] Script now corrects the formatting of inserted & 14 years ago
AssignmentMadeToSameVariableIssueTests.cs AssignmentMadeToSameVariableIssue: don't warn on "a += a;" 14 years ago
BitwiseOperationOnNonFlagsEnumIssueTests.cs
CS0127ReturnMustNotBeFollowedByAnyExpressionTests.cs Fix crash when 'return 1;' occurs within a constructor declaration. 13 years ago
CallToObjectEqualsViaBaseTests.cs
CallToVirtualFunctionFromConstructorTests.cs CallToVirtualFunctionFromConstructorIssue: avoid false positive when the call appears in an anonymous method 14 years ago
CastExpressionOfIncompatibleTypeIssueTests.cs CastExpressionOfIncompatibleTypeIssue: don't produce an issue when the source or target type is unknown. 14 years ago
CompareBooleanWithTrueOrFalseIssueTests.cs [CodeIssues] CompareBooleanWithTrueOrFalseIssue: check if the expression being compared is of boolean type 14 years ago
CompareFloatWithEqualityOperatorIssueTests.cs CompareFloatWithEqualityOperatorIssue: don't show warning when comparing with infinities. 13 years ago
ConditionalToNullCoalescingInspectorTests.cs
ConstantConditionIssueTests.cs [Refactoring] Script now corrects the formatting of inserted & 14 years ago
ConvertToStaticMethodIssueTests.cs Code updates 13 years ago
DoubleNegationIssueTests.cs
DuplicateBodyMethodIssueTests.cs Code updates 13 years ago
ExceptionRethrowTests.cs
ExplicitConversionInForEachIssueTests.cs Add year to license headers. 13 years ago
ExpressionIsAlwaysOfProvidedTypeIssueTests.cs Fixed false positive that caused a 'is operator always returns true' warning even though it returns false. (e.g. 'intVar is double') 14 years ago
ExpressionIsNeverOfProvidedTypeIssueTests.cs Don't show "expression is never of the provided type" warning if the type could not be resolved. 14 years ago
ExpressionOfCompatibleTypeCastIssueTests.cs Code updates 13 years ago
ForControlVariableNotModifiedIssueTests.cs
IdenticalConditionalBranchIssueTests.cs
InconsistentNamingTests.cs Implemented code issue message suppression. 13 years ago
IncorrectCallToGetHashCodeTests.cs [CodeIssues] Check method names before concluding there is a problem. 14 years ago
IncorrectExceptionParameterOrderingTests.cs Fix NullReferenceException in IncorrectExceptionParameterOrderingIssue. 14 years ago
InspectionActionTestBase.cs Code updates 13 years ago
LocalVariableHidesMemberIssueTests.cs [CodeIssues] Add accessibility checking to VariableHidesMemberIssue. 14 years ago
LocalVariableNotUsedIssueTests.cs
MethodNeverReturnsIssueTests.cs Don't show 'method never returns' for iterators containing 'yield break;' 14 years ago
MethodOverloadHidesOptionalParameterIssueTests.cs Don't show 'Method with optional parameter is hidden by overload' issue if the overloads have different type parameters. 14 years ago
MissingStringComparisonIssueTests.cs Add issue provider for missing StringComparison argument to string.StartsWith/EndsWith/IndexOf/LastIndexOf calls. 14 years ago
MultipleEnumerationIssueTests.cs
NegativeRelationalExpressionIssueTests.cs Don't produce NegativeRelationalExpressionIssue inside operator declarations 14 years ago
NoDefaultConstructorIssueTests.cs [CodeIssues] Removed the baseType field from the NoDefaultConstructorIssue since it can be overwritten if there is a nested type that has an issue. The code now resolves the base type when visiting the constructor to make sure it is correct. 14 years ago
NotImplementedExceptionInspectorTests.cs
OptionalParameterCouldBeSkippedTests.cs
ParameterHidesMemberIssueTests.cs [CodeIssues] Add accessibility checking to VariableHidesMemberIssue. 14 years ago
ParameterNotUsedIssueTests.cs Fixed some false positives in parameter not used issue. 13 years ago
ParameterOnlyAssignedIssueTests.cs [CodeIssues] Do not report unused parameter if it is out or ref. 14 years ago
PublicConstructorInAbstractClassIssueTest.cs [CodeIssue] Modified PublicConstructorInAbstractClass issue to support Resharper disable comment 13 years ago
RedundantArrayInitializerCommaIssueTests.cs [CodeIssues] RedundantArrayInitializerCommaIssue: show appropriate description for different types of initializers 14 years ago
RedundantAssignmentIssueTests.cs Auto-Fix for remove redundant assignment have issues in some cases (Part II) fixes 13 years ago
RedundantAttributeParenthesesIssueTests.cs
RedundantBaseConstructorIssueTests.cs Add the capability to remove base call if is not needed. It exposes some classes so maybe I'm not using the proper APIs. But it works good for practical the test case I wrote. 13 years ago
RedundantCaseLabelIssueTests.cs [CodeIssue] Added RedundantCaseLabelIssue 14 years ago
RedundantCatchTests.cs [CodeIssues] Don't consider empty catches redundant. 14 years ago
RedundantConstructorTests.cs [CodeIssue] Redundant Constructor issue 13 years ago
RedundantElseIssueTests.cs [CodeIssues] Fixed case in redundant else issue. 14 years ago
RedundantFieldInitializerIssueTests.cs Fixed bug in redundant field initializer issue. 13 years ago
RedundantInternalInspectorTests.cs
RedundantNamespaceUsageInspectorTests.cs Fix #120: RedundantNamespaceUsageIssue bad handling of using aliases 14 years ago
RedundantNullCheckTests.cs Two new code issues 13 years ago
RedundantObjectCreationArgumentListIssueTests.cs Remove redundant empty argument list is now much less intrusive. 13 years ago
RedundantObjectOrCollectionInitializerIssueTests.cs [CodeIssue] RedundantObjectOrCollectionInitializerIssue: added some tests 14 years ago
RedundantPrivateInspectorTests.cs
RedundantThisInspectorTests.cs Implemented code issue message suppression. 13 years ago
RedundantToStringTests.cs Fixed unit test. 13 years ago
RedundantTypeCastIssueTests.cs [CodeIssue] Fixed bug in redundant type cast issue. 14 years ago
RedundantUsingInspectorTests.cs Implemented resharper disableing for redundant using directive. 13 years ago
RedundantWhereWithPredicateIssueTests.cs RedundantWhereWithPredicateIssue: in addition to Any(), handle Count(),First(),FirstOrDefault(),Last(),LastOrDefault(),LongCount(),Single() and SingleOrDefault(). 14 years ago
ReferenceEqualsCalledWithValueTypeIssueTest.cs
ReferenceToStaticMemberViaDerivedTypeTests.cs Implemented new line ast node insertion. 13 years ago
SimplifyAnonymousMethodToDelegateIssueTests.cs SimplifyAnonymousMethodToDelegateIssues now doesn't touch too complex 13 years ago
StaticConstructorAccessModifierTest.cs Two new code issues 13 years ago
StaticFieldInGenericTypeTests.cs Implemented code issue message suppression. 13 years ago
StringIsNullOrEmptyInspectorTests.cs [CodeIssues] Added type checking to string is null or empty issue. 14 years ago
ThreadStaticOnInstanceFieldTests.cs Implemented code issue message suppression. 13 years ago
TypeParameterNotUsedIssueTests.cs
UnreachableCodeIssueTests.cs Implemented new line ast node insertion. 13 years ago
UseVarKeywordInspectorTests.cs
ValueParameterUnusedTests.cs Don't warn on empty custom events. 14 years ago
VariableDeclaredInWideScopeTests.cs VariableDeclaredInWideScopeIssue no longer suggests moving method call 13 years ago