An open API service indexing awesome lists of open source software.

https://github.com/hazzik/resharper.vb

A set of SSR for VB.NET
https://github.com/hazzik/resharper.vb

Last synced: 2 months ago
JSON representation

A set of SSR for VB.NET

Awesome Lists containing this project

README

        

# ReSharper.VB
A set of SSR for VB.NET

Supported SSR
-------------

* `$x$ Is Nothing OrElse $x$ = ""` => `String.IsNullOrEmpty($x$)`
* Convert If-Then-Else to conditional
* `IsNothing($x$)` => `$x$ Is Nothing`
* Replace `IIf` with `If` operator
* Simplify conditional operator (`If($x$ Is Nothing, $y$, $x$)` => `If($x$, $y$)`)