10 lines
292 B
C#
10 lines
292 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public record Replace
|
|
{
|
|
public static ReplaceEventArgs<TValue> As<TValue>(int index, TValue value) =>
|
|
new(index, value);
|
|
|
|
public static ReplaceEventArgs<TValue> As<TValue>(int index) where TValue : new() =>
|
|
new(index, new TValue());
|
|
} |