You do not need to do anything special to make this an instance method. Just remove the static classifier and do it.
Resharper has this function to include the following static method in an instance method:
public class MyClass { public static void DoSomething( MyClass thing, int value) { thing.Action (value) ; } }
becomes
public class MyClass { public void DoSomething( int value) { this.Action (value) ; } }
Note the change from 'stuff' to 'this'.
source share