Posts by Anderson • 127 points
4 posts
-
1
votes0
answers190
viewsQ: Error while initializing React
Starting JS server... Building and installing the app on the device (cd android && gradlew.bat installDebug)... FAILURE: Build failed with an exception. * What went wrong: Could not create…
react-nativeasked Anderson 127 -
4
votes1
answer5565
viewsQ: How to remove an item at an array position?
Example: string[] x = {"3","2","1"}; I just want to take off the item "2" array x, resulting in: x = {"3","1"};…
-
4
votes2
answers494
viewsQ: How to store an array in a string?
Example: string x; string[] y = {"5", "0","0","5","5"}; x = "50055" I want to put it all together into one variable. I will store in a variable not print.
-
3
votes1
answer509
viewsQ: Take values separated by spaces in C#?
I want to take the values, for example, 79 201 304 and store in one vector each number at one position. Example : int array[0] = 79; int array[1] = 201; int array[2] = 304; public static int…