Files
Toolkit2/Toolkit.Foundation/RemoveAt.cs
T
2024-10-04 16:07:21 +01:00

7 lines
151 B
C#

namespace Toolkit.Foundation;
public record RemoveAt
{
public static RemoveAtEventArgs<TSender> As<TSender>(int index) =>
new(index);
}