MCPcopy Create free account
hub / github.com/chronoxor/FastBinaryEncoding / ToString

Method ToString

projects/CSharp/Proto/com.chronoxor.proto.cs:1643–1651  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1641 public static bool operator!=(Balance lhs, Balance rhs) => !(lhs == rhs);
1642
1643 public override string ToString()
1644 {
1645 var sb = new StringBuilder();
1646 sb.Append("Balance(");
1647 sb.Append("currency="); if (currency != null) sb.Append("\"").Append(currency).Append("\""); else sb.Append("null");
1648 sb.Append(",amount="); sb.Append(amount.ToString(CultureInfo.InvariantCulture));
1649 sb.Append(")");
1650 return sb.ToString();
1651 }
1652
1653 public string ToJson()
1654 {

Callers

nothing calls this directly

Calls 1

ToStringMethod · 0.45

Tested by

no test coverage detected