+ 4
how can i use an array of string with an array of ints together(i use c#)
i mean for declaration of name an age some people you need to have array of strings before array of ints for example:david 20 how can i put them together?
2 Respuestas
+ 2
you can create a class that contains a person's age and name then make an array of the class like so
https://code.sololearn.com/c397ToKQhS1B/?ref=app
0
me too?