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
- Host: GitHub
- URL: https://github.com/hazzik/resharper.vb
- Owner: hazzik
- License: mit
- Created: 2015-01-11T20:39:04.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-04-09T22:10:51.000Z (about 10 years ago)
- Last Synced: 2025-02-02T22:38:25.899Z (4 months ago)
- Size: 164 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ReSharper.VB
A set of SSR for VB.NETSupported 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$)`)