I have a situation where i have to access a non static member from inside a static method. I can access it with new instance, but current state will be lost as non static me
You can't. A static method is not associated with any particular state (aka any non-static members). In other words, they operate independently of any particular instance of the class so they cannot depend on non-static members.