Click here to Skip to main content
15,889,200 members
Home / Discussions / C#
   

C#

 
GeneralRe: Lessons learned Pin
Kant14-Jun-03 15:13
Kant14-Jun-03 15:13 
GeneralRe: Lessons learned Pin
leppie14-Jun-03 9:40
leppie14-Jun-03 9:40 
GeneralRe: Lessons learned Pin
Nick Parker14-Jun-03 10:51
protectorNick Parker14-Jun-03 10:51 
GeneralRe: Lessons learned Pin
leppie14-Jun-03 10:56
leppie14-Jun-03 10:56 
GeneralRe: Lessons learned Pin
Nick Parker14-Jun-03 10:58
protectorNick Parker14-Jun-03 10:58 
GeneralRe: Lessons learned Pin
Kant14-Jun-03 15:06
Kant14-Jun-03 15:06 
GeneralRe: Lessons learned Pin
leppie14-Jun-03 16:21
leppie14-Jun-03 16:21 
GeneralRe: Lessons learned Pin
James T. Johnson14-Jun-03 12:09
James T. Johnson14-Jun-03 12:09 
Kant wrote:
.NET supposed to resolve the problems from DLL Hell right?, What am I missing?

It still sort-of does, because your application isn't broken by the presense of a newer version of an assembly. Instead your application is broken because it is trying to load two assemblies that differ only by version which isn't allowed.*

The quick solution is to use the .NET configuration wizards to generate a .config file which redircts all version 1.1 assemblies to the 1.0 versions (1.0.5000.0 -> 1.0.3300.0). I think its the "Fix an Application" wizard that you can use.

*Even if it was, how would you interface with the newer assembly? For instance, how would you add a control from .NET 1.1 to a .NET 1.0 form? If we assume you could implicitly cast between versions, then how would you call methods on the 1.1 version?

Or better, WHY would you want to load both at the same time? You'd be loading the core assemblies all over again because the version 1.1 class is also referencing the core 1.1 assemblies OMG | :OMG: As you can see it gets complicated quickly Dead | X|


James

"I despise the city and much prefer being where a traffic jam means a line-up at McDonald's"
Me when telling a friend why I wouldn't want to live with him

GeneralRe: Lessons learned Pin
Kant14-Jun-03 15:03
Kant14-Jun-03 15:03 
GeneralRe: Lessons learned Pin
James T. Johnson14-Jun-03 17:03
James T. Johnson14-Jun-03 17:03 
GeneralNew FXCop released Pin
leppie14-Jun-03 1:55
leppie14-Jun-03 1:55 
GeneralRe: New FXCop released Pin
Rocky Moore14-Jun-03 15:33
Rocky Moore14-Jun-03 15:33 
GeneralRe: New FXCop released Pin
leppie14-Jun-03 16:16
leppie14-Jun-03 16:16 
QuestionBrowseForFolder Dialog settings starting Folder? Pin
STW13-Jun-03 19:48
STW13-Jun-03 19:48 
AnswerRe: BrowseForFolder Dialog settings starting Folder? Pin
dynamic13-Jun-03 23:35
dynamic13-Jun-03 23:35 
QuestionIs params a C# keyword? Pin
monrobot1313-Jun-03 12:54
monrobot1313-Jun-03 12:54 
AnswerRe: Is params a C# keyword? Pin
leppie13-Jun-03 13:14
leppie13-Jun-03 13:14 
GeneralOwner-Drawn Scrollbars Pin
J. Dunlap13-Jun-03 12:28
J. Dunlap13-Jun-03 12:28 
GeneralRe: Owner-Drawn Scrollbars Pin
J. Dunlap13-Jun-03 13:55
J. Dunlap13-Jun-03 13:55 
Generalgui event handling Pin
zuhx13-Jun-03 10:08
zuhx13-Jun-03 10:08 
GeneralRe: gui event handling Pin
Paresh Gheewala13-Jun-03 11:22
Paresh Gheewala13-Jun-03 11:22 
Questiondefault (optional) parameters in a function??? Pin
CherezZaboro13-Jun-03 10:06
CherezZaboro13-Jun-03 10:06 
AnswerRe: default (optional) parameters in a function??? Pin
leppie13-Jun-03 10:50
leppie13-Jun-03 10:50 
GeneralC# Language question for a guru Pin
albean13-Jun-03 9:49
albean13-Jun-03 9:49 
GeneralRe: C# Language question for a guru Pin
J. Dunlap13-Jun-03 10:36
J. Dunlap13-Jun-03 10:36 

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.