Update
This commit is contained in:
ALEXTANG
2023-07-17 01:05:12 +08:00
parent 6a6f0591f1
commit 31d4d6c0b8
2 changed files with 6 additions and 1 deletions

View File

@@ -40,5 +40,10 @@ namespace TEngine.Core
idStruct.AppId = (ushort)(routeId & MaskAppId); idStruct.AppId = (ushort)(routeId & MaskAppId);
return idStruct; return idStruct;
} }
public override string ToString()
{
return $"AppId:{this.AppId}|WordId:{this.WordId}";
}
} }
} }

View File

@@ -39,7 +39,7 @@ namespace TEngine.Core
public override string ToString() public override string ToString()
{ {
return $"time: {this.Time}, value: {this.Sequence}"; return $"Time: {this.Time}, Sequence: {this.Sequence}";
} }
} }
} }