tidy
This commit is contained in:
@@ -7,6 +7,6 @@ public record Insert
|
||||
public static Insert<TValue> As<TValue>(int index, TValue value) =>
|
||||
new(index, value);
|
||||
|
||||
public static Insert<TValue> As<TValue>(int index) where TValue : new() =>
|
||||
public static Insert<TValue> As<TValue>(int index) where TValue : new() =>
|
||||
new(index, new TValue());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user