mirror of
https://github.com/Sanae6/SmoOnlineServer.git
synced 2024-11-05 19:25:04 +00:00
21 lines
No EOL
558 B
C#
21 lines
No EOL
558 B
C#
namespace Shared;
|
|
|
|
public static class Extensions {
|
|
public static string Hex(this Span<byte> span) {
|
|
return span.ToArray().Hex();
|
|
}
|
|
|
|
public static string Hex(this IEnumerable<byte> array) {
|
|
return string.Join(' ', array.ToArray().Select(x => x.ToString("X2")));
|
|
}
|
|
|
|
public static unsafe byte* Ptr(this Span<byte> span) {
|
|
fixed (byte* data = span) {
|
|
return data;
|
|
}
|
|
}
|
|
|
|
public static string TrimNullTerm(this string text) {
|
|
return text.Split('\0').FirstOrDefault() ?? "";
|
|
}
|
|
} |