mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Make StringEventArgs internally consistent
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user