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

.NET (Core and Framework)

 
GeneralRe: Kill the VB/C# debate! Pin
Steve Pullan11-Sep-05 15:00
Steve Pullan11-Sep-05 15:00 
GeneralRe: Kill the VB/C# debate! Pin
rwestgraham11-Sep-05 15:08
rwestgraham11-Sep-05 15:08 
GeneralRe: Kill the VB/C# debate! Pin
Paul Conrad14-Sep-05 19:53
professionalPaul Conrad14-Sep-05 19:53 
QuestionCrystal report parameter passing Pin
achrafus8-Sep-05 6:22
achrafus8-Sep-05 6:22 
QuestionMS Hierarchical FlexGrid Pin
pjhenry12168-Sep-05 5:34
pjhenry12168-Sep-05 5:34 
AnswerRe: MS Hierarchical FlexGrid Pin
rwestgraham11-Sep-05 13:04
rwestgraham11-Sep-05 13:04 
QuestionAvoiding circular reference? Pin
FruitBatInShades8-Sep-05 4:55
FruitBatInShades8-Sep-05 4:55 
AnswerRe: Avoiding circular reference? Pin
Stan Shannon9-Sep-05 17:34
Stan Shannon9-Sep-05 17:34 
I assume that your architecture is such that items in Lib A are inherting from items in Lib B? So therefore, A must reference B? You need to change the design such that the only items 'passed back' from A to B are items that are likewise defined in B. If you are trying to achieve a truly generic design, and do not want B to see objects specific to derived implementations, than you need to change from structs to classes where the classes are derived from interfaces (or abstract classes,but preferably interfaces, because you should always program to the interface and not to the implementation in any case). These interfaces would be defined in B, and would be 'passed back' to be used polymorphically as objects of that interface type.


or ...


in B

interface IBData
{
blah,blah, blah....
}

in A

class AData : IBData
{
blah,blah, blah...
}
QuestionHELP: expose windows Form from Windows Service Pin
SongDog8-Sep-05 3:51
SongDog8-Sep-05 3:51 
Questionsending parameter from Vs.Net to crystal Pin
kings_17-Sep-05 23:55
kings_17-Sep-05 23:55 
Questionw3wp.exe and high memory usage Pin
Pongsuriya7-Sep-05 19:52
Pongsuriya7-Sep-05 19:52 
AnswerRe: w3wp.exe and high memory usage Pin
Saksida Bojan7-Sep-05 22:32
Saksida Bojan7-Sep-05 22:32 
QuestionWriting obfuscator Pin
saitou7-Sep-05 13:00
saitou7-Sep-05 13:00 
QuestionCustom-shaped button: edges questions. Pin
subAdm6-Sep-05 21:30
subAdm6-Sep-05 21:30 
QuestionSpeech Application with .NET Framework and Speech SDK 5.1 Pin
codeparas6-Sep-05 17:33
codeparas6-Sep-05 17:33 
AnswerRe: Speech Application with .NET Framework and Speech SDK 5.1 Pin
marslab_258-Sep-05 0:56
marslab_258-Sep-05 0:56 
QuestionHow the framework identifies events Pin
C Flat6-Sep-05 12:10
C Flat6-Sep-05 12:10 
AnswerRe: How the framework identifies events Pin
Christian Graus6-Sep-05 12:40
protectorChristian Graus6-Sep-05 12:40 
Questionmschart ActiveX control crashes in C# .NET appication Pin
Khoi Nguyen6-Sep-05 8:56
Khoi Nguyen6-Sep-05 8:56 
AnswerRe: mschart ActiveX control crashes in C# .NET appication Pin
Ejrr108515-Sep-09 11:57
Ejrr108515-Sep-09 11:57 
QuestionNew transaction cannot enlist Pin
ProffK5-Sep-05 22:12
ProffK5-Sep-05 22:12 
Question.NET FX 2.0 compatible with older versions? Pin
Lord Kixdemp5-Sep-05 12:09
Lord Kixdemp5-Sep-05 12:09 
AnswerRe: .NET FX 2.0 compatible with older versions? Pin
Christian Graus5-Sep-05 12:18
protectorChristian Graus5-Sep-05 12:18 
GeneralRe: .NET FX 2.0 compatible with older versions? Pin
Lord Kixdemp6-Sep-05 10:05
Lord Kixdemp6-Sep-05 10:05 
Questionadd a column dynamically to a datagrid in Winforms Pin
Member 22510155-Sep-05 10:03
Member 22510155-Sep-05 10:03 

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.