What does the Arguments of GetLength mean?
for example
value.GetLength(1)
where value is a two dimensional Array double[,]
What will changing 0 and 1 differ in?
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.
The argument for GetLength method specifies the dimension. The method returns the number of elements in the specified dimension. Example with a two dimensional array:
prints
5and4on the screen.