Click here to Skip to main content
15,902,492 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
Question1.1 & 2.0 in tandem Pin
duncanthescott1-May-06 5:35
duncanthescott1-May-06 5:35 
AnswerRe: 1.1 & 2.0 in tandem Pin
Josh Smith1-May-06 6:11
Josh Smith1-May-06 6:11 
AnswerRe: 1.1 & 2.0 in tandem Pin
raghuvarma1-May-06 23:52
raghuvarma1-May-06 23:52 
Questionconverting from .net 2.0 to .net 1.1 Pin
K.A.L30-Apr-06 10:51
K.A.L30-Apr-06 10:51 
AnswerRe: converting from .net 2.0 to .net 1.1 Pin
Dave Kreskowiak30-Apr-06 11:21
mveDave Kreskowiak30-Apr-06 11:21 
AnswerRe: converting from .net 2.0 to .net 1.1 Pin
Graham Nimbley30-Apr-06 11:56
Graham Nimbley30-Apr-06 11:56 
GeneralRe: converting from .net 2.0 to .net 1.1 Pin
K.A.L30-Apr-06 14:06
K.A.L30-Apr-06 14:06 
GeneralRe: converting from .net 2.0 to .net 1.1 Pin
Graham Nimbley30-Apr-06 14:16
Graham Nimbley30-Apr-06 14:16 
Personally I don't know of any specific tool, but if you haven't used any of the 2.0 features, then it should be as easy as running the 1.1 compiler over the sources.

Partial classes are easy enough to remove, by merging all the seperate sources files into one.

Where you have used implicit (sp?) event handlers, replace it with a explicit declaration. E.g.
replace Control.Click+=Function with Control.Click+=new EventHandler(Function)

If you have used any of the generic collections then you just replace it with the non-generic version. It should be as easy as replacing the declaration call, as between the two methods/properties should be the same. E.g. List<T> is the generic version of ArrayList

Where it can get complicated is where you have used generics in other places. To remove it could involve refactoring code again.

Graham.

-- modified at 20:18 Sunday 30th April, 2006
GeneralRe: converting from .net 2.0 to .net 1.1 Pin
K.A.L1-May-06 1:06
K.A.L1-May-06 1:06 
AnswerRe: converting from .net 2.0 to .net 1.1 Pin
HimaBindu Vejella2-May-06 18:42
HimaBindu Vejella2-May-06 18:42 
QuestionEnterprise library database config Pin
w3Nima30-Apr-06 3:28
w3Nima30-Apr-06 3:28 
Questionshared folder access and impersonation Pin
darkzen.bps29-Apr-06 10:23
darkzen.bps29-Apr-06 10:23 
QuestionMSN Explorer duplicate Pin
David Jeba29-Apr-06 0:51
David Jeba29-Apr-06 0:51 
AnswerRe: MSN Explorer duplicate Pin
Dave Kreskowiak30-Apr-06 5:21
mveDave Kreskowiak30-Apr-06 5:21 
QuestionRe: MSN Explorer duplicate Pin
David Jeba30-Apr-06 20:57
David Jeba30-Apr-06 20:57 
AnswerRe: MSN Explorer duplicate Pin
Dave Kreskowiak1-May-06 2:21
mveDave Kreskowiak1-May-06 2:21 
QuestionUsing Progress Bars Pin
mr_1234527-Apr-06 13:43
mr_1234527-Apr-06 13:43 
AnswerRe: Using Progress Bars Pin
CWIZO27-Apr-06 21:57
CWIZO27-Apr-06 21:57 
GeneralRe: Using Progress Bars Pin
thebread27-Apr-06 22:44
thebread27-Apr-06 22:44 
QuestionAdding a "Checked" property to ToolStripSplitButton Pin
Dromio27-Apr-06 7:59
Dromio27-Apr-06 7:59 
AnswerRe: Adding a "Checked" property to ToolStripSplitButton Pin
Dromio28-Apr-06 4:28
Dromio28-Apr-06 4:28 
Questionimplementing the mvc-pattern Pin
thebread26-Apr-06 21:52
thebread26-Apr-06 21:52 
AnswerRe: implementing the mvc-pattern Pin
CWIZO27-Apr-06 7:24
CWIZO27-Apr-06 7:24 
GeneralRe: implementing the mvc-pattern Pin
Josh Smith27-Apr-06 7:39
Josh Smith27-Apr-06 7:39 
GeneralRe: implementing the mvc-pattern Pin
CWIZO27-Apr-06 7:40
CWIZO27-Apr-06 7:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.