Make StringEventArgs internally consistent

This commit is contained in:
Matt Nadareski
2024-05-22 15:01:52 -04:00
parent dbe521b719
commit c335cd2869
2 changed files with 2 additions and 1 deletions

View File

@@ -50,6 +50,7 @@
- Rename Result to ResultEventArgs for consistency
- Reduce accessors for DumpEnvironment
- Better handle interface constants
- Make StringEventArgs internally consistent
### 3.1.9a (2024-05-21)

View File

@@ -37,7 +37,7 @@ namespace MPF.Core.Data
/// <summary>
/// Event arguments are just the value of the string contained within
/// </summary>
public static implicit operator StringBuilder(StringEventArgs args) => new StringBuilder(args._value);
public static implicit operator StringBuilder(StringEventArgs args) => new(args._value);
/// <summary>
/// Event arguments are just the value of the string contained within