Suppose that my function gets a two dimensional array as input and its dimensions are unknown. How can I figure them out using reflection?
Suppose that my function gets a two dimensional array as input and its dimensions
Share
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 don’t need reflection for this.
You can call the
GetLengthmethod of theArrayclass and pass the dimension index.