Answers for "how to find the number of columns in a 2d array c#"

C#
0

C# get column of 2d array

public class CustomArray<T>
{
    public T[] GetColumn(T[,] matrix, int columnNumber)
    {
        return Enumerable.Range(0, matrix.GetLength(0))
                .Select(x => matrix[x, columnNumber])
                .ToArray();
    }

    public T[] GetRow(T[,] matrix, int rowNumber)
    {
        return Enumerable.Range(0, matrix.GetLength(1))
                .Select(x => matrix[rowNumber, x])
                .ToArray();
    }
}
Posted by: Guest on October-27-2020

Code answers related to "how to find the number of columns in a 2d array c#"

C# Answers by Framework

Browse Popular Code Answers by Language