+ 5
Can I create a method inside another?
I've created a method inside Main, but it didn't work. It only was functional when I created it out of Main.
2 Answers
+ 14
You can't have methods in another method.
You can, however, have anonymous/lambda functions.
+ 3
No, but you can call other methods within a method.