Hi,
Is there an utility which can convert code in .net 2.0 to lower version of .net i.e. 1.1 or 1.0,
How to convert VB/C# .net 2.0 code to .net 1.1 or 1.0?
I am not aware of any such tool and even if there was I do not suspect it would be 100% foolproof and you would want to retest everything anyway.
I am assuming you are talking about the source code and since they are syntactically similar, the only real difference between 2.0 and 1.1 and 1.1 would be language features like generics and new framework clases that do not exist in 1.1 or 1.0 or member calls that also do not exist. There are other differences as well but these would form the bulk.
If you are using features in 2.0 that do not exist in 1.1/1.0 there would be no easy way, if at all, for a conversion utility to handle this, so you would need to manually recode in 1.1 to handle these missing features.
It may help to refine the answer if we knew exactly why you need to do this and why you could not just put 2.0 on the machine that has 1.1/1.0 assuming it can support it.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment