[Modify] Polish it

This commit is contained in:
sta 2021-12-10 19:47:13 +09:00
parent 6358944cac
commit 06ea197dbc

View File

@ -858,7 +858,9 @@ Extended Payload Length: {7}
public void Print (bool dumped)
{
Console.WriteLine (dumped ? dump (this) : print (this));
var val = dumped ? dump (this) : print (this);
Console.WriteLine (val);
}
public string PrintToString (bool dumped)