Special Reports

Optimize VB.NET Code Performance

Optimization rules have changed under VB.NET -- here's half a dozen new ways to build wicked-fast code.

Optimizing a VB.NET application often requires a deep understanding of how the .NET Framework works, including details about the inner workings of the garbage collector and the Just In Time (JIT) compiler. In some cases, you even must redesign your entire app to leverage .NET features such as class inheritance or ADO.NET batch updates. However, a few simple tricks can often speed up your code without affecting the app's structure.

If you're sure your integer operations never throw an exception, select the "Remove integer overflow checks" option in the Configuration Properties | Optimizations page of the Project Properties dialog box. This option can speed up integer operations by 30 to 40 percent.

The compiler can produce better code in some cases if you use the new Return statement to return a value from a function, instead of assigning the value to the variable named after the function itself (as you did in VB6).

Use the new Try?Catch statement instead of the old-style On Error statements, which were preserved only to ease the migration from VB6. In fact, the VB compiler translates On Error statements into hidden Try?Catch blocks.

If you use old-style On Error statements, at least try not to use On Error Resume Next, Resume, or Resume Next statements. These cause the compiler to add hidden statements to keep track of the line about to be executed, so that control flow can resume from the correct point in your code.

When comparing strings in a case-insensitive way, try using String.CompareOrdinal instead of the String.Compare method or the = and <> operators. In fact, the former method compares the numeric codes of individual characters and doesn't take locale into account, helping make it six or seven times faster than the latter methods.

You can often speed up searches and replace string operations dramatically if you use regular expressions. For example, this code displays all the individual words in a sentence:

' This code requires the following imports
'  Imports System.Text.RegularExpressions

Dim s As String = "Hi there, how are you?"
Dim re As New Regex("\w+")
Dim m As Match
For Each m In re.Matches(s)
    Console.WriteLine(m.Value)
Next

You can learn more on this topic by reading about the Regex class and the System.Text.RegularExpressions namespace in the .NET SDK documentation.

About the Author

Francesco Balena has authored several programming books, including Programming Microsoft Visual Basic .NET Version 2003 [Microsoft Press]. He speaks regularly at VSLive! and other conferences, founded the .Net2TheMax family of sites, and is the principal of Code Architects Srl, an Italian software company that offers training and programming tools for .NET developers. Reach him at [email protected].

comments powered by Disqus

Featured

  • Compare New GitHub Copilot Free Plan for Visual Studio/VS Code to Paid Plans

    The free plan restricts the number of completions, chat requests and access to AI models, being suitable for occasional users and small projects.

  • Diving Deep into .NET MAUI

    Ever since someone figured out that fiddling bits results in source code, developers have sought one codebase for all types of apps on all platforms, with Microsoft's latest attempt to further that effort being .NET MAUI.

  • Copilot AI Boosts Abound in New VS Code v1.96

    Microsoft improved on its new "Copilot Edit" functionality in the latest release of Visual Studio Code, v1.96, its open-source based code editor that has become the most popular in the world according to many surveys.

  • AdaBoost Regression Using C#

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the AdaBoost.R2 algorithm for regression problems (where the goal is to predict a single numeric value). The implementation follows the original source research paper closely, so you can use it as a guide for customization for specific scenarios.

  • Versioning and Documenting ASP.NET Core Services

    Building an API with ASP.NET Core is only half the job. If your API is going to live more than one release cycle, you're going to need to version it. If you have other people building clients for it, you're going to need to document it.

Subscribe on YouTube