I have these data :
4 pippo pluto paperino
10 marco paolo roberto
2 hello cruel world
and I'd like to store these data into a multi-type matrix myMatrix. (First field is an integer, the rest are strings).
So, if I type myMatrix[1][2] I must get paolo. How can I do it on C#?
Tuple<int, string, string, string>[]
object[][]
Dictionary<int, string[]>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With