Click here to Skip to main content
15,885,896 members
Home / Discussions / C#
   

C#

 
QuestionOk Mr Tom Pin
Hema Bairavan16-Jan-09 4:46
Hema Bairavan16-Jan-09 4:46 
AnswerRe: Ok Mr Tom Pin
Tom Deketelaere16-Jan-09 4:52
professionalTom Deketelaere16-Jan-09 4:52 
QuestionCaching Method Pin
satsumatable16-Jan-09 0:27
satsumatable16-Jan-09 0:27 
AnswerRe: Caching Method Pin
Steve Hansen16-Jan-09 2:58
Steve Hansen16-Jan-09 2:58 
QuestionBinding two datasets to gridview in windows application. Pin
shaik abdul gani15-Jan-09 23:49
shaik abdul gani15-Jan-09 23:49 
QuestionPrint an arrays by coulms Pin
newbie_15-Jan-09 23:19
newbie_15-Jan-09 23:19 
QuestionRe: Print an arrays by coulms Pin
CPallini15-Jan-09 23:36
mveCPallini15-Jan-09 23:36 
AnswerRe: Print an arrays by coulms Pin
SeMartens15-Jan-09 23:41
SeMartens15-Jan-09 23:41 
Hi,

what about this code? I'm supposing that you have all arrays in a list called aListOfArrays.

int iColumnCount = aListOfArrays[0].length;

for(int iCurColumn = 0; iCurColumn < iColumnCount; iCurColumn++) {
   for(int iCurArray = 0; iCurArray < aListOfArrays.Count; iCurArray++) {
     System.out.print(" " + aListOfArrays[iCurArray][iCurColumn].ToString());
   }
  System.out.println();
}


Does this help you?

Regards
Sebastian

It's not a bug, it's a feature!

Me in Softwareland.

GeneralRe: Print an arrays by coulms Pin
J a a n s15-Jan-09 23:52
professionalJ a a n s15-Jan-09 23:52 
GeneralRe: Print an arrays by coulms Pin
SeMartens15-Jan-09 23:58
SeMartens15-Jan-09 23:58 
GeneralRe: Print an arrays by coulms [modified] Pin
newbie_15-Jan-09 23:58
newbie_15-Jan-09 23:58 
Questionhow can i suppress Microsoft .NET security warning. [modified] Pin
Dattatraya K15-Jan-09 23:09
Dattatraya K15-Jan-09 23:09 
AnswerRe: how can i suppress Microsoft .NET security warning. Pin
SeMartens15-Jan-09 23:17
SeMartens15-Jan-09 23:17 
GeneralRe: how can i suppress Microsoft .NET security warning. Pin
Dattatraya K15-Jan-09 23:20
Dattatraya K15-Jan-09 23:20 
GeneralRe: how can i suppress Microsoft .NET security warning. Pin
SeMartens15-Jan-09 23:35
SeMartens15-Jan-09 23:35 
GeneralRe: how can i suppress Microsoft .NET security warning. Pin
Dave Kreskowiak16-Jan-09 4:01
mveDave Kreskowiak16-Jan-09 4:01 
QuestionProgramatically setting the smtp server in Outlook 2003 Pin
WritinCode15-Jan-09 22:51
WritinCode15-Jan-09 22:51 
AnswerRe: Programatically setting the smtp server in Outlook 2003 Pin
campurr3-Apr-10 5:44
campurr3-Apr-10 5:44 
QuestionSynchronization via Locks Pin
the_jat15-Jan-09 21:57
the_jat15-Jan-09 21:57 
AnswerRe: Synchronization via Locks Pin
SeMartens15-Jan-09 22:18
SeMartens15-Jan-09 22:18 
GeneralRe: Synchronization via Locks Pin
the_jat15-Jan-09 22:44
the_jat15-Jan-09 22:44 
GeneralRe: Synchronization via Locks Pin
N a v a n e e t h15-Jan-09 22:48
N a v a n e e t h15-Jan-09 22:48 
GeneralRe: Synchronization via Locks Pin
the_jat15-Jan-09 22:57
the_jat15-Jan-09 22:57 
AnswerRe: Synchronization via Locks [modified] Pin
Luc Pattyn16-Jan-09 1:53
sitebuilderLuc Pattyn16-Jan-09 1:53 
AnswerRe: Synchronization via Locks Pin
CPallini15-Jan-09 22:21
mveCPallini15-Jan-09 22:21 

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.