SYSK 19: Confused about Forward and Backward Compatibility? Then read this...
Forward compatibility means that an application can be compiled and run on both later and earlier versions of the .NET Framework. Can your application, compiled using VS2005 (.NET 2.0) run without any problems on .NET 1.1? If yes, it’s forward compatible. I know, it sounds backwards (no pun intended), but, “forward compatibility means that an application created using a later version of the .NET Framework will run on an earlier version.”
Backward compatibility means that an application is compiled for an earlier version of the .NET Framework, and continues to execute on later versions of the .NET Framework, without any degradation of functionality. Most applications created using version 1.0 will run on version 1.1 and applications using version 1.1 will run on version 2.0
What does it take to be forward or backward compatible? Only using APIs supported in all framework versions you intend to run on…
For compatibility and version changes, see http://msdn.microsoft.com/netframework/programming/obsoleteapi/default.aspx
Comments
- Anonymous
December 12, 2005
This is a very important topic, especially now that .NET 2.0 has been released. Newer modules within a solution may be built with .NET 2.0 while existing customer, third-party and Microsoft applications are still supported only on .NET 1.1. For comprehensive information on this topic, refer to http://www.gotdotnet.com/team/changeinfo/default.aspx