Click here to Skip to main content
15,912,072 members
Home / Discussions / C#
   

C#

 
GeneralRe: Quad Tree With images Pin
Pete O'Hanlon26-Feb-10 5:15
mvePete O'Hanlon26-Feb-10 5:15 
GeneralRe: Quad Tree With images Pin
Keith Barrow26-Feb-10 5:27
professionalKeith Barrow26-Feb-10 5:27 
QuestionListView Column Sort Arrow Pin
#realJSOP26-Feb-10 3:17
professional#realJSOP26-Feb-10 3:17 
AnswerTry this Pin
Pete O'Hanlon26-Feb-10 5:39
mvePete O'Hanlon26-Feb-10 5:39 
GeneralRe: Try this Pin
#realJSOP26-Feb-10 9:02
professional#realJSOP26-Feb-10 9:02 
GeneralRe: Try this Pin
Pete O'Hanlon26-Feb-10 9:46
mvePete O'Hanlon26-Feb-10 9:46 
GeneralRe: Try this Pin
#realJSOP27-Feb-10 0:55
professional#realJSOP27-Feb-10 0:55 
GeneralRe: Try this Pin
#realJSOP27-Feb-10 3:58
professional#realJSOP27-Feb-10 3:58 
GeneralRe: Try this Pin
Pete O'Hanlon1-Mar-10 1:12
mvePete O'Hanlon1-Mar-10 1:12 
GeneralRe: Try this Pin
Pete O'Hanlon1-Mar-10 9:34
mvePete O'Hanlon1-Mar-10 9:34 
AnswerRe: ListView Column Sort Arrow Pin
-tusk-22-Jun-11 6:10
-tusk-22-Jun-11 6:10 
GeneralRe: ListView Column Sort Arrow Pin
-tusk-24-Jun-11 2:57
-tusk-24-Jun-11 2:57 
Question2d array in c# Pin
Aljaz11126-Feb-10 3:05
Aljaz11126-Feb-10 3:05 
AnswerRe: 2d array in c# Pin
Pete O'Hanlon26-Feb-10 3:17
mvePete O'Hanlon26-Feb-10 3:17 
GeneralRe: 2d array in c# Pin
Aljaz11126-Feb-10 3:20
Aljaz11126-Feb-10 3:20 
GeneralRe: 2d array in c# [modified] Pin
Dan Mos26-Feb-10 3:26
Dan Mos26-Feb-10 3:26 
use something like
int blah[,] = new int[80,20]


[Edit]
C# has two kind of multidimensional array: jagged and rectangular
int[,] numbers = new int[,] { {1, 2}, {3, 4}, {5, 6} };//rectangular
int[][] numbers = new int[2][] { new int[] {2,3,4}, new int[] {5,6,7,8,9} };//jagged or array of array
//as you can see the size of the second array in the jagged one can differ
//more on the topic => msdn lots of examples

[/Edit]
modified on Friday, February 26, 2010 10:18 AM

GeneralRe: 2d array in c# Pin
harold aptroot26-Feb-10 4:24
harold aptroot26-Feb-10 4:24 
GeneralRe: 2d array in c# Pin
Aljaz11126-Feb-10 6:39
Aljaz11126-Feb-10 6:39 
GeneralRe: 2d array in c# Pin
harold aptroot26-Feb-10 6:46
harold aptroot26-Feb-10 6:46 
GeneralRe: 2d array in c# Pin
Aljaz11126-Feb-10 7:47
Aljaz11126-Feb-10 7:47 
GeneralRe: 2d array in c# Pin
harold aptroot26-Feb-10 8:05
harold aptroot26-Feb-10 8:05 
GeneralRe: 2d array in c# Pin
Pete O'Hanlon26-Feb-10 5:14
mvePete O'Hanlon26-Feb-10 5:14 
GeneralRe: 2d array in c# Pin
harold aptroot26-Feb-10 6:18
harold aptroot26-Feb-10 6:18 
GeneralRe: 2d array in c# Pin
Dan Mos26-Feb-10 6:28
Dan Mos26-Feb-10 6:28 
GeneralRe: 2d array in c# Pin
harold aptroot26-Feb-10 6:48
harold aptroot26-Feb-10 6:48 

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.