A closure is an outer function O which in its body have a variable x and an inner function F. F must access x. O must return F, i.e. the F itself (or its pointer), not the return value of F. This way since F can be called from code outside O, and F need x to be executed, x have to be kept in scope after O exit.
In javascript we can define functions within functions so its straight forward. In C# we have to use anonymous methods or anonymous delegates to have same behavior as inner functions.
The essense of a closure is preserving the values of local variables of a function, after the function exits, so that next time the function is called, the previous values are already present. The above mentioned syntax and techniques are ways to accomplish closures.
Is there anyway, in any language (other than assembly language) to have the essence of closures without using an inner function or delegate. Ofcourse fields in classes in OOP have same effect, but i am looking for ways other than that.