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