Click here to Skip to main content
15,909,325 members
Home / Discussions / C#
   

C#

 
GeneralRe: Wrapper Class For Third Party tools Pin
Kodanda Pani31-Mar-05 19:05
Kodanda Pani31-Mar-05 19:05 
Generalignoring a class in XML Serialization Pin
RajivJain31-Mar-05 17:41
RajivJain31-Mar-05 17:41 
GeneralRe: ignoring a class in XML Serialization Pin
Sebastian Schneider31-Mar-05 17:45
Sebastian Schneider31-Mar-05 17:45 
GeneralRe: ignoring a class in XML Serialization Pin
RajivJain31-Mar-05 17:55
RajivJain31-Mar-05 17:55 
GeneralRe: ignoring a class in XML Serialization Pin
RajivJain31-Mar-05 17:56
RajivJain31-Mar-05 17:56 
GeneralRe: ignoring a class in XML Serialization Pin
Sebastian Schneider31-Mar-05 18:06
Sebastian Schneider31-Mar-05 18:06 
GeneralRe: ignoring a class in XML Serialization Pin
Sebastian Schneider31-Mar-05 17:58
Sebastian Schneider31-Mar-05 17:58 
GeneralRe: ignoring a class in XML Serialization Pin
RajivJain31-Mar-05 18:07
RajivJain31-Mar-05 18:07 
GeneralRe: ignoring a class in XML Serialization Pin
RajivJain31-Mar-05 18:01
RajivJain31-Mar-05 18:01 
QuestionHi how to resize the conrols for different resolution? Pin
soman patil31-Mar-05 17:39
soman patil31-Mar-05 17:39 
AnswerRe: Hi how to resize the conrols for different resolution? Pin
Sebastian Schneider31-Mar-05 17:43
Sebastian Schneider31-Mar-05 17:43 
AnswerRe: Hi how to resize the conrols for different resolution? Pin
Charlieee1-Apr-05 3:12
Charlieee1-Apr-05 3:12 
QuestionWill assembly in native code format require .NET runtime? Pin
Rama Sharma31-Mar-05 17:09
Rama Sharma31-Mar-05 17:09 
AnswerRe: Will assembly in native code format require .NET runtime? Pin
Sebastian Schneider31-Mar-05 17:39
Sebastian Schneider31-Mar-05 17:39 
GeneralRe: Will assembly in native code format require .NET runtime? Pin
Rama Sharma31-Mar-05 17:57
Rama Sharma31-Mar-05 17:57 
GeneralRe: Will assembly in native code format require .NET runtime? Pin
Sebastian Schneider31-Mar-05 18:05
Sebastian Schneider31-Mar-05 18:05 
GeneralRe: Will assembly in native code format require .NET runtime? Pin
Rama Sharma31-Mar-05 21:04
Rama Sharma31-Mar-05 21:04 
GeneralProgrammatically Inserting formatted text Pin
Pyro Joe31-Mar-05 15:30
Pyro Joe31-Mar-05 15:30 
GeneralInfopath File attachment control Programmatically Pin
we_swati31-Mar-05 11:56
we_swati31-Mar-05 11:56 
QuestionHow to make a silent installer Pin
Asad Hussain31-Mar-05 10:52
Asad Hussain31-Mar-05 10:52 
AnswerRe: How to make a silent installer Pin
Dave Kreskowiak31-Mar-05 15:07
mveDave Kreskowiak31-Mar-05 15:07 
GeneralRe: How to make a silent installer Pin
Pyro Joe31-Mar-05 16:43
Pyro Joe31-Mar-05 16:43 
GeneralPopulating an MSChart control Pin
Ravi Bhavnani31-Mar-05 10:45
professionalRavi Bhavnani31-Mar-05 10:45 
General(Never mind) Pin
Ravi Bhavnani31-Mar-05 11:10
professionalRavi Bhavnani31-Mar-05 11:10 
GeneralArrayList foreach Pin
RadioButton31-Mar-05 10:13
RadioButton31-Mar-05 10:13 
Hello I need a little help.

I have three array lists for this example.

ArrayList one = new ArrayList()
ArrayList two = new ArrayList()
ArrayList three = new ArrayList()

I would like to do a foreach or for loop that can cycle through the items in the three Arrays. Instead of doing 3 foreach loops around my values like this:

foreach(int a in one)
{
foreach(int b in two)
{
foreach(int c in three)
{
get array valuse here
}
}
}

Hopefully that makes since. Thanks for the help.
JD

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.