tagged [arrays]

Multidimensional arrays in Java and C#

Multidimensional arrays in Java and C# In C# there are 2 ways to create mutlidimensional arrays. ``` int[,] array1 = new int[32,32]; int[][] array2 = new int[32][]; for(int i=0;i

Initialize a Jagged Array the LINQ Way

Initialize a Jagged Array the LINQ Way I have a 2-dimensional jagged array (though it's always rectangular), which I initialize using the traditional loop: ``` var myArr = new double[rowCount][]; for ...

Finding the last index of an array

Finding the last index of an array How do you retrieve the last element of an array in C#?

29 Jun at 06:15

How to convert vector to array

How to convert vector to array How do I convert a `std::vector` to a `double array[]`?

19 Mar at 17:46

Array Size (Length) in C#

Array Size (Length) in C# How can I determine size of an array (length / number of items) in C#?

23 Feb at 12:34

All possible array initialization syntaxes

All possible array initialization syntaxes What are all the array initialization syntaxes that are possible with C#?

10 Feb at 16:32

What is a jagged array?

What is a jagged array? What is a jagged array (in c#)? Any examples and when should one use it....

27 May at 18:44

Intersect two arrays

Intersect two arrays How can I find the intersecttion between 2 arrays in C#, in a fast way?

20 May at 20:38

Convert byte[] to char[]

Convert byte[] to char[] How do I convert a `byte` array to a `char` array in C#?

Run Program from byte array

Run Program from byte array I have a program stored in byte array. Is it possible to run it inside C#?

30 Apr at 15:11