Created
February 22, 2019 13:00
-
-
Save buybackoff/ded4fcceeacf42a377cd17a81c7c1c1f to your computer and use it in GitHub Desktop.
Fixed-size struct without unsafe keyword, using "safe" S.R.CS.Unsafe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[StructLayout(LayoutKind.Sequential, Size = Size)] | |
public struct Test | |
{ | |
public const int Size = 32; | |
public byte this[int idx] => Unsafe.AddByteOffset(ref Unsafe.As<Test, byte>(ref Unsafe.AsRef(in this)), (IntPtr)idx); | |
public override string ToString() | |
{ | |
Span<byte> bytes = stackalloc byte[Size]; | |
for (int i = 0; i < Size; i++) | |
{ | |
var b = this[i]; | |
if (b == 0) | |
{ | |
bytes = bytes.Slice(0, i); | |
break; | |
} | |
bytes[i] = b; | |
} | |
// coule be UTF16, ASCII, etc | |
// also see https://github.com/Spreads/Spreads/blob/master/src/Spreads.Core/DataTypes/Symbol.cs | |
return Encoding.UTF8.GetString(bytes); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment