Methods:
Methods object द्वारा perform किए जाने वाले actions को represent करते हैं। methods functions को ही कहा जाता है। इन्हे किसी special task को perform करने के लिए use किया जाता है। यह किसी भी problem को devide कर उसे easy बना देते हैं।
<Access modifier> Function <Function Name> ([arguments]) As <Return Type>
[Function’s statements]
Return <returning value>
End Function
Ex:
Public Function Area() As Double
Return math.pi * radius ^ 2
End Function
No comments:
Post a Comment