Good afternoon, comrades! Suppose we have some static extension method of the form:
public static string[] Method(this string[] Arr) { Некоторые действия со входным массивом...; return Arr; } My problem is this: is it possible to somehow change the initially transmitted Arr array so that I don’t have to register
Arr = Arr.Method(); And it was enough only
Arr.Method(); Just with the keyword this refuses to work most of the other keywords that could contribute to this! What could you think of in this situation?