Click here to Skip to main content
15,920,801 members
Home / Discussions / C#
   

C#

 
JokeRe: C parsing question Pin
Not Active7-Dec-11 9:01
mentorNot Active7-Dec-11 9:01 
GeneralRe: C parsing question Pin
David Skelly7-Dec-11 22:17
David Skelly7-Dec-11 22:17 
Questionbuild install with sql server 2008 Express Pin
jogisarge7-Dec-11 5:46
jogisarge7-Dec-11 5:46 
AnswerRe: build install with sql server 2008 Express Pin
OriginalGriff7-Dec-11 8:10
mveOriginalGriff7-Dec-11 8:10 
GeneralRe: build install with sql server 2008 Express Pin
David C# Hobbyist.7-Dec-11 14:38
professionalDavid C# Hobbyist.7-Dec-11 14:38 
GeneralRe: build install with sql server 2008 Express Pin
OriginalGriff7-Dec-11 21:35
mveOriginalGriff7-Dec-11 21:35 
AnswerRe: build install with sql server 2008 Express Pin
PIEBALDconsult7-Dec-11 11:25
mvePIEBALDconsult7-Dec-11 11:25 
AnswerRe: build install with sql server 2008 Express Pin
Jitendra Parida - Jeetu7-Dec-11 23:41
Jitendra Parida - Jeetu7-Dec-11 23:41 
QuestionSet paper size to custom(for cheque print Software) Pin
Member 84382697-Dec-11 0:39
Member 84382697-Dec-11 0:39 
AnswerRe: Set paper size to custom(for cheque print Software) Pin
coded0077-Dec-11 1:45
professionalcoded0077-Dec-11 1:45 
QuestionSession Object Not working in Web Service Pin
Anubhava Dimri6-Dec-11 23:39
Anubhava Dimri6-Dec-11 23:39 
AnswerRe: Session Object Not working in Web Service Pin
Richard MacCutchan6-Dec-11 23:48
mveRichard MacCutchan6-Dec-11 23:48 
AnswerRe: Session Object Not working in Web Service Pin
mathavi12-Dec-11 11:56
mathavi12-Dec-11 11:56 
Questionhow to add lists Pin
saurabh001 m6-Dec-11 22:05
saurabh001 m6-Dec-11 22:05 
AnswerRe: how to add lists Pin
coded0076-Dec-11 22:11
professionalcoded0076-Dec-11 22:11 
GeneralRe: how to add lists Pin
saurabh001 m6-Dec-11 22:21
saurabh001 m6-Dec-11 22:21 
AnswerRe: how to add lists Pin
Richard MacCutchan6-Dec-11 22:22
mveRichard MacCutchan6-Dec-11 22:22 
GeneralRe: how to add lists Pin
saurabh001 m6-Dec-11 22:23
saurabh001 m6-Dec-11 22:23 
GeneralRe: how to add lists Pin
Richard MacCutchan6-Dec-11 23:15
mveRichard MacCutchan6-Dec-11 23:15 
AnswerRe: how to add lists Pin
OriginalGriff6-Dec-11 22:36
mveOriginalGriff6-Dec-11 22:36 
GeneralRe: how to add lists Pin
saurabh001 m6-Dec-11 22:58
saurabh001 m6-Dec-11 22:58 
AnswerRe: how to add lists Pin
BillWoodruff7-Dec-11 10:11
professionalBillWoodruff7-Dec-11 10:11 
I suggest you repost this here, or on C# QA, with a code example clearly showing the structure of the Lists, and clearly showing exactly what the final result's structure (another List ?) should be, and telling us, clearly, how the final result is composed from the outermost Classes, using the innermost Classes, and their inner Properties (of Type: List of doubles).

From what you've disclosed here, we can only make "wild guesses" at the underlying structure like:
public class CD 
{
    // constructor code ?
    public CD(?) {?}

    public class CDA 
    {
       // constructor code ?
       public CDA(?) {?}

       public List<double> cda1 {get; set;}
       public List<double> cda2 {get; set;}
       // and so on ...
    }

    public class CDB {}
    public class CDC {}
}
//
public List1<CD> list1 = new List<CD>();
public List2<CD> list2 = new List<CD>();
public List3<CD> list3 = new List<CD>();
//
// some function that fills all the Lists, and inner Lists, and the inner property Lists of Type double, or is a database involved here ? database query result ?
//
// the result ?
public List<CD> SumOfLists = // using Linq ?
You need to clarify exactly what you mean by "nested." And, is inheritance used in any way here ?
"Anyone who shows me my 'blind spots' gives me the gift of sight." ... a thought from the shallows of the deeply shallow mind of ... Bill

QuestionEmail Exception Catching Pin
AmbiguousName6-Dec-11 20:48
AmbiguousName6-Dec-11 20:48 
AnswerRe: Email Exception Catching Pin
Wayne Gaylard6-Dec-11 21:18
professionalWayne Gaylard6-Dec-11 21:18 
AnswerRe: Email Exception Catching Pin
AmbiguousName6-Dec-11 21:47
AmbiguousName6-Dec-11 21:47 

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.