Statement/keyword to end a METHOD declaration in a CLASS?
Posted: Wed Apr 17, 2019 4:29 pm
Is there a keyword to end a Method definition besides just having the code end with a RETURN statement?? It looks so naked to me without a closing key work. There is Class Blah / End Class. Is there something similar for Method Blah ..... End Method ??
Here's what I am dreaming of:
Here's what I am dreaming of:
Code: Select all
Class Blah
Constructor()
Return
End Constructor
Public Method Blah() as Boolean
Return True
End Method
End Class