method - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18) +---- Forum: Visual Basic and the .NET Framework (https://www.supportforums.net/forumdisplay.php?fid=19) +---- Thread: method (/showthread.php?tid=8177) |
method - ahmed1978 - 07-04-2010 Can anyone explain me why we required method to be used in vb.net. what is the advantage. thanks RE: method - wchar_t - 07-06-2010 what do you mean. it would be great if you could explain a little more of what you are asking. RE: method - BRSteven - 07-06-2010 I don't understand either.What you mean by method? RE: method - ahmed1978 - 07-07-2010 (07-06-2010, 04:46 PM)BRSteven Wrote: I don't understand either.What you mean by method? class, method etc., RE: method - -BoodyE- - 07-09-2010 Explain better man in order to help you RE: method - thanasis2028 - 07-10-2010 Here is some help: http://www.startvbdotnet.com/language/methods.aspx Try searching google. It helps. Anyway, here is the advantage of methods: In your applications you might need to use the same piece of code many times. So, without methods you would need to copy-paste this piece of code, making your source huge and full of crap. However, with methods you can just add this code in a function or a sub and call it with a single line of code. |