ReSharper 2024.3 предлагает поддержку всех новых возможностей C# 13, включая коллекции params
, свойства <1>partial1>, новый тип <2>lock2> и ключевое слово <3>field3>. В обновлении улучшена очистка кода, повышена производительность, форматирование стало более гибким, а правила именования — более точными. Multiline To-do comments and tooltip colorization improve code readability and organization. C++ support has been bolstered with new features for Unreal Engine development, alongside improvements to performance and Clang interoperability.
Доступна бесплатная пробная версия на 30 дней
With its latest release, ReSharper introduces support for the latest features that come with C# 13, namely:
params
: ключевое слово params1> теперь работает с разными типами коллекций, что позволяет создавать более эффективные сигнатуры методов без выделения дополнительных ресурсов. System.Threading.Lock
для более эффективной синхронизации потоков. Его производительность выше, чем у традиционного выражения lock
. field
: с помощью нового ключевого слова field
можно напрямую обращаться к внутренним полям автосвойств, что упрощает логику свойств. Learn all about the support of C#13 features in ReSharper and Rider on our blog.
In ReSharper 2024.3, code cleanup has been re-engineered for more robust performance. It now leverages the same engine as scoped quick-fixes, ensuring thorough issue resolution and enhancing analyzer precision. Parallel preprocessing has also been added to optimize file handling. Furthermore, you can now select the code cleanup profile per file or skip cleanup on specific files.
There are new formatting options to give you even more flexibility:
=
operator. We’ve added a couple of new options to adjust naming rules more precisely.
async
suffix in the name that aren’t marked with an async
modifier but return a Task
-like type. This is helpful when you declare a method in an interface where you aren’t allowed to use an async
modifier, but which will return a Task
type in implementation. ReSharper 2024.3 now supports multiline To-do comments, allowing indented text on subsequent lines to be treated as part of the same To-do item. This enhancement makes it easier to group related notes and tasks together in your codebase. You can now add context to your To-dos across multiple lines, improving readability and organization.
Additionally, we’ve updated the Peek To-do link (Ctrl+Shift+click) action that lets you look up an external issue associated with a To-do item inline. It now uses a modern web browser engine to give you a better rendering experience.
For this release, we reviewed almost all C# error, warning, and informal messages and introduced text colorization wherever possible.
Approximately 600 messages were updated with tooltips that offer a more intuitive reading experience, with the included code elements highlighted in the editor's familiar color scheme.
В ReSharper 2024.3 также улучшена поддержка C++. Вас ждет:
Больше информации о функциях для C++ вы найдете на странице, посвященной ReSharper C++ 2024.3.
The IL Viewer tool window now provides IL code for assembly manifest, including:
This IL code is shown when the caret in the text editor is on an assembly or module attribute or somewhere inside an <AssemblyName>.cs
file for external assemblies.
When working with classes that declare a primary constructor, the decompiler will now display the constructor and its parameters correctly, giving you a complete view of how objects are instantiated directly from the decompiled code.
Доступна бесплатная пробная версия на 30 дней