For VB6 code base,VB.NET is supported by
NDepend
VBDepend is a tool that simplifies understanding a VB6 code base. Architects and developers can analyze code structure, specify design rules, it can helps you to migrate VB6 code base.
VBDepend supports the
Code Query Language (CQL)
for maximum flexibility. CQL will help you answer in seconds your questions about your code base:
- Which public methods have more than 30 lines of code?
SELECT
METHODS
WHERE
NbLinesOfCode
>
30
AND
IsPublic
- Which classes Derived From CBase?
SELECT
TYPES
WHERE
IsClass
AND
DeriveFrom
"
CBase
"
- Which methods have been refactored recently ?
SELECT
METHODS
WHERE
CodeWasChanged
More about CQL
For VB.NET Code Base use:
Our Partners: