mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -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];
|
var array = new int[size];
|
||||||
for (int i = 1; i <= size; i++)
|
for (int i = 1; i <= size; i++)
|
||||||
|
|||||||
Reference in New Issue
Block a user