Click here to Skip to main content
15,887,214 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to return/store references on objects Pin
Heath Stewart26-Jan-04 8:55
protectorHeath Stewart26-Jan-04 8:55 
GeneralRe: How to return/store references on objects Pin
Not Active26-Jan-04 9:56
mentorNot Active26-Jan-04 9:56 
GeneralRe: How to return/store references on objects Pin
Jörgen Sigvardsson26-Jan-04 10:14
Jörgen Sigvardsson26-Jan-04 10:14 
GeneralRe: How to return/store references on objects Pin
Not Active26-Jan-04 10:18
mentorNot Active26-Jan-04 10:18 
GeneralRe: How to return/store references on objects Pin
Jörgen Sigvardsson26-Jan-04 10:20
Jörgen Sigvardsson26-Jan-04 10:20 
GeneralRe: How to return/store references on objects Pin
Heath Stewart26-Jan-04 10:41
protectorHeath Stewart26-Jan-04 10:41 
GeneralRe: How to return/store references on objects Pin
Jörgen Sigvardsson26-Jan-04 12:41
Jörgen Sigvardsson26-Jan-04 12:41 
AnswerRe: How to return/store references on objects Pin
Heath Stewart26-Jan-04 8:53
protectorHeath Stewart26-Jan-04 8:53 
GeneralCEMAPI use in C# :confused: Pin
camasmartin26-Jan-04 7:08
camasmartin26-Jan-04 7:08 
GeneralRe: CEMAPI use in C# :confused: Pin
Heath Stewart26-Jan-04 8:47
protectorHeath Stewart26-Jan-04 8:47 
GeneralReferring to a 2D array through a 1D array Pin
crushinghellhammer26-Jan-04 6:50
crushinghellhammer26-Jan-04 6:50 
GeneralRe: Referring to a 2D array through a 1D array Pin
Anonymous26-Jan-04 8:21
Anonymous26-Jan-04 8:21 
GeneralRe: Referring to a 2D array through a 1D array Pin
crushinghellhammer26-Jan-04 14:25
crushinghellhammer26-Jan-04 14:25 
GeneralRe: Referring to a 2D array through a 1D array Pin
Heath Stewart26-Jan-04 9:06
protectorHeath Stewart26-Jan-04 9:06 
GeneralRe: Referring to a 2D array through a 1D array Pin
crushinghellhammer26-Jan-04 14:37
crushinghellhammer26-Jan-04 14:37 
GeneralRe: Referring to a 2D array through a 1D array Pin
Heath Stewart27-Jan-04 2:46
protectorHeath Stewart27-Jan-04 2:46 
GeneralRe: Referring to a 2D array through a 1D array Pin
crushinghellhammer27-Jan-04 8:21
crushinghellhammer27-Jan-04 8:21 
GeneralRe: Referring to a 2D array through a 1D array Pin
crushinghellhammer27-Jan-04 8:23
crushinghellhammer27-Jan-04 8:23 
Heath, thanks for your detailed replies!

Ok, here's what I've done, incorporating your suggestions and that of my anonymous helper.

public class Segmentation
{
private static void Main()
{
Random R = new Random();

int[] inArray = new int[1280];

for(int i = 0; i < 1280; i++)
inArray[i] = i;

int[][] arrSegmentArray = new int[17][];

for(int i = 0; i < 17; i++)
{
arrSegmentArray[i] = new int[256];
Array.Copy(inArray, 64*i, arrSegmentArray[i], 0, 256);
Console.WriteLine(arrSegmentArray[i].ToString());
Console.ReadLine();
}

}

}

However, where I expect arrSegmentArray[i] to be printed as a 256 element array, all I see is System.Int32[];

What do I need to fix here? Frown | :(
GeneralRe: Referring to a 2D array through a 1D array Pin
Heath Stewart27-Jan-04 8:58
protectorHeath Stewart27-Jan-04 8:58 
GeneralRe: Referring to a 2D array through a 1D array Pin
crushinghellhammer27-Jan-04 9:01
crushinghellhammer27-Jan-04 9:01 
GeneralRe: Referring to a 2D array through a 1D array Pin
Heath Stewart27-Jan-04 9:08
protectorHeath Stewart27-Jan-04 9:08 
GeneralRe: Referring to a 2D array through a 1D array Pin
crushinghellhammer27-Jan-04 8:50
crushinghellhammer27-Jan-04 8:50 
GeneralPreview in Open Dialog box Pin
Shree26-Jan-04 6:23
Shree26-Jan-04 6:23 
GeneralRe: Preview in Open Dialog box Pin
Heath Stewart26-Jan-04 8:43
protectorHeath Stewart26-Jan-04 8:43 
GeneralUploading Images Pin
srt726-Jan-04 4:36
srt726-Jan-04 4:36 

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.