Files
Toolkit2/Toolkit.Foundation/RemoveAt.cs
T
TheXamlGuy c0c1a82846 Codemaid
2024-05-24 08:21:50 +01:00

7 lines
149 B
C#

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