Tool for checking naming style in VB.NET after Hungarian notation

I support the legacy ASP.NET website written in VB.NET. Our customers force us to use Hungarian notation to declare variables, etc.

eg:

Dim sSomeString as String Dim oSomeObject as xxxClass 

Is there a tool like FxCop, StyleCop, ReSharper that can help me identify code that violates this naming style?

+4
source share
1 answer

(Disclaimer: I am part of SubMain, the company that makes CodeIt.Right)

Yes, there is a tool that will do this. Although the recommended set of rules for printing is focused on the MS.NET Guidelines, CodeIt.Right also comes with rules that help use Hungarian notation, as well as refactoring to automatically correct invalid names. It even has rules to help you convert Hungarian notation to recommended naming conventions in MS.NET.

Contact customer support by email on our website and they will point you to the appropriate set of rules.

+1
source

Source: https://habr.com/ru/post/1385731/


All Articles