Need help in parameter
Hi all,
Pls somebody explain me with simple example what does the ref, out and params keyword do in c sharp??
And what does actually do postback and autopostaback
method in asp.net with an example??? And
if (!IsPostBack) what does it mean????
Pls somebody clear my above query...
Thanks,
Sumit
Bhushan SahniPosted Aug 3, 2009, 12:33 AM
Danatas GerviPosted Aug 2, 2009, 8:26 AM
this is the "sintax sugar" - example:
if you needs to send in function parameters the varios number of objects
you must write
but, if you will use "params" keyword in
The array will be created by compiler automatically.
* note - params argument must be last parameter in function.