No announcements
Found 2101416 threads
-
0 Votes
Clearing 2 dimensional string array
Be aware that an array is immutable.Answered | 4 Replies | 1132 Views | Created by Les2011 - Saturday, February 23, 2013 7:13 AM | Last reply by Cor Ligthert - Saturday, February 23, 2013 8:49 AM -
0 Votes
Insertion of 2-dimensional array in the middle of another 2-dimensional array
Try: memmove(A[3], A[1], sizeof(A[1])*1); memcpy(A[1], B[0], sizeof(B[0])*2);Answered | 1 Replies | 1295 Views | Created by salmasa150 - Sunday, August 11, 2013 2:24 PM | Last reply by SimonRev - Sunday, August 11, 2013 2:44 PM -
1 Votes
2 dimensional array
but thats an array of arrays...Answered | 5 Replies | 1979 Views | Created by salam.p.v - Tuesday, September 20, 2011 2:12 PM | Last reply by servy42 - Wednesday, September 21, 2011 2:03 PM -
0 Votes
2-dimensional Array
I know how to do this for a 1-Dimensional Array.Answered | 6 Replies | 3329 Views | Created by V.K.S.B.K - Friday, February 12, 2010 3:18 PM | Last reply by V.K.S.B.K - Monday, February 15, 2010 2:34 PM -
5 Votes
Shift items in 2 dimensional array
How do I access elements within the int[] and also how can I use List<> on arrays with more than 2 dimensions?Answered | 7 Replies | 10226 Views | Created by shah_yash - Thursday, June 3, 2010 7:48 PM | Last reply by Louis.fr - Friday, June 4, 2010 1:51 AM -
1 Votes
How to store an empty string in a 2-Dimensional array of integer type?
Another option is to have it be a two dimentional array of nullable ints (int?Answered | 2 Replies | 1904 Views | Created by ylk56 - Sunday, February 26, 2012 9:58 PM | Last reply by Jared Van Leeuwen - Sunday, February 26, 2012 10:54 PM -
4 Votes
Multi-Dimensional Byte Array
Expl. below: string[,] multiDim = new string[5, 10]; string[][] jagged = new string[5][10]; multiDim[3, 2] = ...Answered | 10 Replies | 22845 Views | Created by User.01 - Tuesday, October 23, 2012 5:57 PM | Last reply by User.01 - Tuesday, October 23, 2012 7:56 PM -
0 Votes
value of type string cannot be converted to 1-dimensional array of string
The return type on your function is a string array not a string.Answered | 2 Replies | 1245 Views | Created by Aziz aka - Sunday, April 13, 2014 7:29 PM | Last reply by Aziz aka - Sunday, April 13, 2014 8:39 PM -
2 Votes
Cast while displaying 2 dimensional arrays
My understanding was even for a multi dimensional array the memory allocation would be continuous and if you have to access the [1][2] th element in the array it as ...Answered | 5 Replies | 2697 Views | Created by SOS_sk - Thursday, January 12, 2012 6:23 PM | Last reply by WayneAKing - Friday, January 13, 2012 9:58 PM -
2 Votes
How to pass multi dimensional string array to VB.
Hi, Manu.Machilles, In VB6, we usually pass multi-dimensional arrays with Variant.Answered | 6 Replies | 7318 Views | Created by Manu.Machilles - Wednesday, October 24, 2007 8:00 AM | Last reply by Yu Guo – MSFT - Tuesday, October 30, 2007 9:08 AM -
1 Votes
2 dimensional array filling it up with string and double
Hello Stinger, I believe that you get the exception like this: Index was outside the bounds of the array.Answered | 11 Replies | 21332 Views | Created by The original Stinger - Thursday, February 17, 2011 8:30 PM | Last reply by QLoveQ - Monday, February 28, 2011 3:35 AM -
0 Votes
How to use memchr on 2 dimensional array?
On 8/22/2017 7:10 AM, sgrm123 wrote: I have 2 dimensional array int array[200][2].Answered | 5 Replies | 570 Views | Created by sgrm123 - Tuesday, August 22, 2017 11:10 AM | Last reply by Guido Franzke - Tuesday, August 22, 2017 1:11 PM -
1 Votes
assigning TWO one dimensional array to ONE two dimensional array in C#
Hi, Please check this out: c# assign 1 dimensional array to 2 dimensional array syntax Hope it helps.Answered | 2 Replies | 9610 Views | Created by MEBeginner - Monday, July 30, 2012 4:01 AM | Last reply by Muhammad-Umer - Monday, July 30, 2012 5:00 AM -
2 Votes
2 dimensional arrays of objects
Greetings all I have the read the article "Creating Control Arrays in Visual Basic .NET" (link: http://msdn.microsoft.com/en-us/library/aa289500(VS.71).aspx) and ...Answered | 3 Replies | 3234 Views | Created by gibcustom - Saturday, July 11, 2009 7:47 AM | Last reply by John Anthony Oliver - Saturday, July 11, 2009 7:02 PM -
1 Votes
Concatenating two 2-dimensional int arrays into one larger 3-dimensional array
Take for example we copy a arr2a and arr3b which are 2 dim arrays in the second and third dim of the arr3 which is 3 dim array.Answered | 3 Replies | 4558 Views | Created by salmasa150 - Wednesday, July 31, 2013 8:12 PM | Last reply by Barry-Schwarz - Thursday, August 1, 2013 6:11 PM -
2 Votes
Multi Dimensional Array
I am trying to create an multi dimensional array with 4 columns.Answered | 3 Replies | 825 Views | Created by MW2011 - Monday, September 15, 2014 11:09 PM | Last reply by MW2011 - Wednesday, September 17, 2014 11:57 PM -
1 Votes
C#: Sorting string array
This isn't any homework!Answered | 8 Replies | 30009 Views | Created by recherche - Monday, October 15, 2007 11:17 AM | Last reply by Mallikharjun Kona - Saturday, June 4, 2011 5:49 PM -
0 Votes
How to store 2-dimensional array in MySettings?
2.Answered | 15 Replies | 3131 Views | Created by Rolf Timmerman - Thursday, November 5, 2009 2:59 PM | Last reply by Rudedog2 - Friday, November 6, 2009 2:02 PM -
2 Votes
Sorting an array by string length.
Dim myStrings As String() = {"Hello", "John", "halloweeen", "I"} //shortest Dim sorted As ...Answered | 2 Replies | 2719 Views | Created by troylundin - Friday, May 7, 2010 7:16 PM | Last reply by troylundin - Friday, May 7, 2010 7:58 PM -
0 Votes
Sorting the string in an array
He has used STL sort algorithm.Answered | 7 Replies | 3513 Views | Created by Arun Parthasarathy - Wednesday, December 23, 2009 6:17 AM | Last reply by WayneAKing - Wednesday, December 23, 2009 8:36 AM - Items 1 to 20 of 2101416 Next ›
No announcements