mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2025-02-03 17:20:45 +03:00
Output data as proper hex
This commit is contained in:
parent
263fb219a8
commit
4d98ea3d51
@ -147,7 +147,7 @@ namespace Steamworks
|
||||
continue;
|
||||
}
|
||||
|
||||
Console.WriteLine( $"data: {string.Join( "", data.Select( x => x.ToString( "x" ) ) )}" );
|
||||
Console.WriteLine( $"data: {BitConverter.ToString( data )}" );
|
||||
return;
|
||||
}
|
||||
|
||||
@ -168,7 +168,7 @@ namespace Steamworks
|
||||
continue;
|
||||
}
|
||||
|
||||
Console.WriteLine( $"data: {string.Join( "", data.Select( x => x.ToString( "x" ) ) )}" );
|
||||
Console.WriteLine( $"data: {BitConverter.ToString( data )}" );
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user