S
Simon Woods
Hi
A blog post I was reading (http://www.defmacro.org/ramblings/fp.html)
included this lambda function.
Function makeIncrementer() {
int n = 0;
int increment() {
return ++n;
}
}
Can it be translated to VB.net? If so how?
Dim incrementer as Func(of Integer) = Function ?????? what next?
Thx
Simon
A blog post I was reading (http://www.defmacro.org/ramblings/fp.html)
included this lambda function.
Function makeIncrementer() {
int n = 0;
int increment() {
return ++n;
}
}
Can it be translated to VB.net? If so how?
Dim incrementer as Func(of Integer) = Function ?????? what next?
Thx
Simon