Make static method private.

This commit is contained in:
Kristian Stolen
2022-01-12 20:14:33 +08:00
parent 0a7e386c36
commit 4dc1e57789

View File

@@ -46,7 +46,7 @@ namespace Reverse
} }
} }
public static int[] CreateRandomArray(int size) private int[] CreateRandomArray(int size)
{ {
var array = new int[size]; var array = new int[size];
for (int i = 1; i <= size; i++) for (int i = 1; i <= size; i++)