Is there anything to convert my .net 2.0 type files to .net 1.1?
-
Well i've been making an app in .net 2.0 with sharpdevelop - but ive been making sure to only use things available to .net 1.1 I like the way all the designer code goes in a seperate file, anyways, i go to compile it with .net 1.1 and it doesn't like all of this partial class nonsense. SO rather than ME combining the two files for each form, is there somehting that will do it for me?
-
Well i've been making an app in .net 2.0 with sharpdevelop - but ive been making sure to only use things available to .net 1.1 I like the way all the designer code goes in a seperate file, anyways, i go to compile it with .net 1.1 and it doesn't like all of this partial class nonsense. SO rather than ME combining the two files for each form, is there somehting that will do it for me?
-
Partial class just tells the compiler to include that source with the rest of it. If you want to compile in .net 1.1 just combine all the partial classes into one class, in one file.
So the answer is No, i have to do it myself? Aww, but i'm so lazy...