1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-12 00:43:03 +00:00

adjusted some resharper things

This commit is contained in:
JKorf
2018-03-01 12:13:51 +01:00
parent 488eb1cd48
commit e89beed9ef
8 changed files with 20 additions and 30 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ namespace CryptoExchange.Net.Authentication
protected string ByteToString(byte[] buff)
{
var sbinary = "";
foreach (byte t in buff)
foreach (var t in buff)
sbinary += t.ToString("X2"); /* hex format */
return sbinary;
}