mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
12 lines
213 B
C#
12 lines
213 B
C#
namespace AssetRipper.IO.Files.Tests;
|
|
|
|
internal static class RandomData
|
|
{
|
|
public static byte[] MakeRandomData(int size)
|
|
{
|
|
byte[] data = new byte[size];
|
|
new Random(57).NextBytes(data);
|
|
return data;
|
|
}
|
|
}
|