From 20087cd80483f36dc6bad57f29285d48575ea577 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 3 Mar 2019 17:52:47 +1000 Subject: [PATCH] Use string interpolation with {0:P;M;Z} format string --- .../tools/Watch/ByteWatch.cs | 19 +------------------ .../tools/Watch/WordWatch.cs | 19 +------------------ 2 files changed, 2 insertions(+), 36 deletions(-) diff --git a/BizHawk.Client.Common/tools/Watch/ByteWatch.cs b/BizHawk.Client.Common/tools/Watch/ByteWatch.cs index 7d6c53738c..e576b01edd 100644 --- a/BizHawk.Client.Common/tools/Watch/ByteWatch.cs +++ b/BizHawk.Client.Common/tools/Watch/ByteWatch.cs @@ -200,24 +200,7 @@ namespace BizHawk.Client.Common /// Get a string representation of difference /// between current value and the previous one /// - public override string Diff - { - get - { - string diff = ""; - int diffVal = _value - _previous; - if (diffVal > 0) - { - diff = "+"; - } - else if (diffVal < 0) - { - diff = "-"; - } - - return $"{diff}{((byte)Math.Abs(diffVal))}"; - } - } + public override string Diff => $"{(byte)Math.Abs(_value - _previous):+G;-G;G}"; /// /// Get the maximum possible value diff --git a/BizHawk.Client.Common/tools/Watch/WordWatch.cs b/BizHawk.Client.Common/tools/Watch/WordWatch.cs index 968e81e0f8..1fb49b7823 100644 --- a/BizHawk.Client.Common/tools/Watch/WordWatch.cs +++ b/BizHawk.Client.Common/tools/Watch/WordWatch.cs @@ -214,24 +214,7 @@ namespace BizHawk.Client.Common /// Get a string representation of difference /// between current value and the previous one /// - public override string Diff - { - get - { - string diff = ""; - int diffVal = _value - _previous; - if (diffVal > 0) - { - diff = "+"; - } - else if (diffVal < 0) - { - diff = "-"; - } - - return $"{diff}{((ushort)Math.Abs(diffVal))}"; - } - } + public override string Diff => $"{(ushort)Math.Abs(_value - _previous):+G;-G;G}"; /// /// Get the maximum possible value