update: 完善数据打印逻辑

Signed-off-by: huyufei <yufei.hu@castbox.fm>
main
胡宇飞 2024-06-17 19:10:53 +08:00
parent c59f76aead
commit f96e506a19
1 changed files with 2 additions and 1 deletions

View File

@ -7,10 +7,11 @@ namespace Guru
{
public double usdPrice;
public bool test;
public string state;
public override string ToString()
{
return $"{nameof(usdPrice)}: {usdPrice} {nameof(test)}: {test}";
return $"{nameof(usdPrice)}: {usdPrice} {nameof(test)}: {test} {nameof(state)}: {state}";
}
}
}