I want to reverse some chars but I get the following error:
Cannot implicitly convert type '
System.Collections.Generic.IEnumerable<int[]>
' to 'int[][]'.
Below is code for reference.
private void tp(int[][] cd = null,int offset = 0)
{
if (cd == null) return;
cd = cd.Reverse();
/*rest of code...*/
}