1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-12-13 09:08:59 +00:00
This commit is contained in:
Jkorf 2025-11-28 14:09:47 +01:00
parent 0f64aa5cb6
commit e9c7e53e1b

View File

@ -52,7 +52,7 @@ namespace CryptoExchange.Net.Objects.Sockets
/// <inheritdoc />
public override string ToString()
{
return $"{StreamId} - {(Symbol == null ? "" : (Symbol + " - "))}{(UpdateType == null ? "" : (UpdateType + " - "))}";
return $"{StreamId} - {(Symbol == null ? "" : (Symbol + " - "))}{UpdateType}";
}
}
@ -127,5 +127,8 @@ namespace CryptoExchange.Net.Objects.Sockets
DataTime = DataTime
};
}
/// <inheritdoc />
public override string ToString() => base.ToString().TrimEnd('-') + Data?.ToString();
}
}