I’m having problems translating this piece of code:
float [,] varname;
to something using List<>
basically i want a way of creating bi-dimensional generic list with that kind of setup
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You have to write:
Take care that in this case each outer list can have different-sized inner list, is not the same as an array..Also the inner-list can be
null.for the initialization use: