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

  • AI for GitHub Collaboration? Maybe Not So Much

    No doubt GitHub Copilot has been a boon for developers, but AI might not be the best tool for collaboration, according to developers weighing in on a recent social media post from the GitHub team.

  • Visual Studio 2022 Getting VS Code 'Command Palette' Equivalent

    As any Visual Studio Code user knows, the editor's command palette is a powerful tool for getting things done quickly, without having to navigate through menus and dialogs. Now, we learn how an equivalent is coming for Microsoft's flagship Visual Studio IDE, invoked by the same familiar Ctrl+Shift+P keyboard shortcut.

  • .NET 9 Preview 3: 'I've Been Waiting 9 Years for This API!'

    Microsoft's third preview of .NET 9 sees a lot of minor tweaks and fixes with no earth-shaking new functionality, but little things can be important to individual developers.

  • Data Anomaly Detection Using a Neural Autoencoder with C#

    Dr. James McCaffrey of Microsoft Research tackles the process of examining a set of source data to find data items that are different in some way from the majority of the source items.

  • What's New for Python, Java in Visual Studio Code

    Microsoft announced March 2024 updates to its Python and Java extensions for Visual Studio Code, the open source-based, cross-platform code editor that has repeatedly been named the No. 1 tool in major development surveys.

Subscribe on YouTube