mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Update .NET SDK version to 8.0.300
This commit is contained in:
parent
d23411f203
commit
af5f2de99f
2 changed files with 2 additions and 2 deletions
|
@ -1 +1 @@
|
|||
8.0.100
|
||||
8.0.300
|
|
@ -63,7 +63,7 @@ public readonly ref struct U8Span
|
|||
return new U8Span(_buffer.Slice(start, length));
|
||||
}
|
||||
|
||||
public static implicit operator ReadOnlySpan<byte>(in U8Span value) => value.Value;
|
||||
public static implicit operator ReadOnlySpan<byte>(scoped in U8Span value) => value.Value;
|
||||
public static implicit operator U8Span(ReadOnlySpan<byte> value) => new U8Span(value);
|
||||
|
||||
public static explicit operator string(in U8Span value) => value.ToString();
|
||||
|
|
Loading…
Reference in a new issue