Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Binary Code Compatibility

0.00/5 (No votes)
25 Jun 2012 3  
This article explains how you can identify any compatability issues for a legacy code written in VB, or any other language that produces TLB (Type Library) files for its interfaces.

Introduction

This code allows users to compare two files using MD5.

Background

Over the past week, I was trying to find a way to identify whether the binary compatibility of a COM binary has changed or not without referring back to the developer and asking him, since this process will be done by the release team.

And after some thorough investigation, it came to me! These COMs binaries produce Type Libraries (TLB), and the TLB describes the interfaces of the COM. So any change on the publish methods of the binary classes will change the TLB file for sure.

Based on this conclusion, I built a simple desktop application that compares any two files by getting the MD5 of each file, and if the MD5 is identical then the files are identical, otherwise they are not. And I used this file comparer to identify compatibility changes better binaries.

Using the code

To use the code, select the location of the old file to compare, select the location of the second file to compare, and click Compare, and you will get the compare result.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here