Beispiel #1
0
            public static unsafe HashData FromPointer(HashData *hash)
            {
                HashData result = default;

                result.Data1 = hash->Data1;
                result.Data2 = hash->Data2;
                result.Data3 = hash->Data3;
                return(result);
            }
Beispiel #2
0
 public static unsafe HashData FromPointer(HashData *hash)
 => new(hash->Data1, hash->Data2, hash->Data3);
Beispiel #3
0
 public static unsafe HashData FromPointer(HashData *hash) =>