diff --git a/README.md b/README.md index a3f4c9a7c6..4cd57363a5 100644 --- a/README.md +++ b/README.md @@ -117,6 +117,7 @@ * [Add interpolation](Refactorings.md#add-interpolation) * [Add parameter name to argument](Refactorings.md#add-parameter-name-to-argument) * [Add parameter name to parameter](Refactorings.md#add-parameter-name-to-parameter) +* [Change method return type to void](Refactorings.md#change-method-return-type-to-void) * [Change method/property/indexer type according to return expression](Refactorings.md#change-methodpropertyindexer-type-according-to-return-expression) * [Change method/property/indexer type according to yield return expression](Refactorings.md#change-methodpropertyindexer-type-according-to-yield-return-expression) * [Change type according to expression](Refactorings.md#change-type-according-to-expression) @@ -145,6 +146,7 @@ * [Format parameter list](Refactorings.md#format-parameter-list) * [Generate switch sections](Refactorings.md#generate-switch-sections) * [Introduce constructor from selected member(s)](Refactorings.md#introduce-constructor-from-selected-members) +* [Introduce using static directive](Refactorings.md#introduce-using-static-directive) * [Make member abstract](Refactorings.md#make-member-abstract) * [Mark all members as static](Refactorings.md#mark-all-members-as-static) * [Mark member as static](Refactorings.md#mark-member-as-static) @@ -174,8 +176,10 @@ * [Replace block with statements (in each section)](Refactorings.md#replace-block-with-statements-in-each-section) * [Replace conditional expression with if-else](Refactorings.md#replace-conditional-expression-with-if-else) * [Replace constant with field](Refactorings.md#replace-constant-with-field) +* [Replace do statement with while statement](Refactorings.md#replace-do-statement-with-while-statement) * [Replace embedded statement with block](Refactorings.md#replace-embedded-statement-with-block) * [Replace embedded statement with block (in if-else)](Refactorings.md#replace-embedded-statement-with-block-in-if-else) +* [Replace Enum.HasFlag method with bitwise operation](Refactorings.md#replace-enumhasflag-method-with-bitwise-operation) * [Replace explicit type with 'var'](Refactorings.md#replace-explicit-type-with-var) * [Replace field with constant](Refactorings.md#replace-field-with-constant) * [Replace for with foreach](Refactorings.md#replace-for-with-foreach) @@ -198,6 +202,7 @@ * [Replace 'var' with explicit type](Refactorings.md#replace-var-with-explicit-type) * [Replace verbatim string literal with regular string literal](Refactorings.md#replace-verbatim-string-literal-with-regular-string-literal) * [Replace verbatim string literal with regular string literals](Refactorings.md#replace-verbatim-string-literal-with-regular-string-literals) +* [Replace while statement with do statement](Refactorings.md#replace-while-statement-with-do-statement) * [Reverse for loop](Refactorings.md#reverse-for-loop) * [Simplify lambda expression](Refactorings.md#simplify-lambda-expression) * [Split attributes](Refactorings.md#split-attributes)