コード例 #1
0
ファイル: Marvin.cs プロジェクト: dotnetGame/natsu-clr
        private static unsafe ulong GenerateSeed()
        {
            ulong seed;

            RuntimeImports.GetRandomBytes((byte *)&seed, sizeof(ulong));
            return(seed);
        }