79642868

Date: 2025-05-28 19:21:37
Score: 1
Natty:
Report link

For removing at a index you could do:

    public static T[] removeArrAt<T>(T[] src, int idx) {
        return src.Take(idx).Concat(src.Skip(idx + 1)).ToArray();
    }

which returns the modified array

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 神楽坂 綾乃