mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-21 23:00:43 -08:00
Make static method private.
This commit is contained in:
@@ -46,7 +46,7 @@ namespace Reverse
|
||||
}
|
||||
}
|
||||
|
||||
public static int[] CreateRandomArray(int size)
|
||||
private int[] CreateRandomArray(int size)
|
||||
{
|
||||
var array = new int[size];
|
||||
for (int i = 1; i <= size; i++)
|
||||
|
||||
Reference in New Issue
Block a user