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

  • Windows Community Toolkit v8.2 Adds Native AOT Support

    Microsoft shipped Windows Community Toolkit v8.2, an incremental update to the open-source collection of helper functions and other resources designed to simplify the development of Windows applications. The main new feature is support for native ahead-of-time (AOT) compilation.

  • New 'Visual Studio Hub' 1-Stop-Shop for GitHub Copilot Resources, More

    Unsurprisingly, GitHub Copilot resources are front-and-center in Microsoft's new Visual Studio Hub, a one-stop-shop for all things concerning your favorite IDE.

  • Mastering Blazor Authentication and Authorization

    At the Visual Studio Live! @ Microsoft HQ developer conference set for August, Rockford Lhotka will explain the ins and outs of authentication across Blazor Server, WebAssembly, and .NET MAUI Hybrid apps, and show how to use identity and claims to customize application behavior through fine-grained authorization.

  • Linear Support Vector Regression from Scratch Using C# with Evolutionary Training

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the linear support vector regression (linear SVR) technique, where the goal is to predict a single numeric value. A linear SVR model uses an unusual error/loss function and cannot be trained using standard simple techniques, and so evolutionary optimization training is used.

  • Low-Code Report Says AI Will Enhance, Not Replace DIY Dev Tools

    Along with replacing software developers and possibly killing humanity, advanced AI is seen by many as a death knell for the do-it-yourself, low-code/no-code tooling industry, but a new report belies that notion.

Subscribe on YouTube