"Option Strict Off" Compatibility for VB.NET

Eazfuscator.NET

"Option Strict Off" Compatibility for VB.NET

Introduction

  • The resulting application has a greater chance of errors during runtime
  • Late binding is considerably slower than a direct strongly-typed access
  • Late binding may break after obfuscation

Compatibility Mode

Instructions

  1. Open obfuscatable project inside the IDE
  2. Add new source file to the project and call it ObfuscationSettings.vb. You may prefer to use another name instead of ObfuscationSettings.vb
  3. Imports System
    Imports System.Reflection
    
    <Assembly: Obfuscation(Feature:="vb option strict off compatibility", Exclude:=False)>