Fixed more edge cases
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace Toolkit.Foundation;
|
||||
|
||||
public record RemoveAndInsertAt
|
||||
{
|
||||
public static RemoveAndInsertAtEventArgs<TValue> As<TValue>(int oldIndex, int newIndex, TValue value) =>
|
||||
new(oldIndex, newIndex, value);
|
||||
}
|
||||
Reference in New Issue
Block a user