AvaloniaEdit
AvaloniaEdit copied to clipboard
Use a traditional constructor instead of a primary constructor
Refactored DataObjectCopyingEventArgs to use a traditional constructor instead of a primary constructor.
Why
- Consistency: All other EventArgs-based classes in the codebase use traditional constructors.
- Compatibility: The project targets
netstandard2.0;net6.0, so we can stick to C# 11 features for now.