7 lines
149 B
C#
7 lines
149 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public record RemoveAt
|
|
{
|
|
public static RemoveAtEventArgs<TValue> As<TValue>(int index) =>
|
|
new(index);
|
|
} |