I have a class:
public class MyEvents : SPItemEventReceiver
And a static member in it: public static int i;
I need to transfer data from ItemDeliting event handler to ItemDeleted.
I'm going to change the variable i in ItemDeliting and then read it in ItemDeleted.
Will it all work properly?