What is "out" parameter how it is used in methods?

Answer Posted / bhavnasweet04

Out Parameter: Used to pass a parameter as a reference so
that the function called will set the value. This could be
used to return more than 1 value by a function.
e.g.

public int AddMuliply( int a int b out int c)
{
c a*b;
return ( a+b);
}

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which filter executes first in an asp.net mvc application?

733


Describe the roles of clr in .net framework.?

829


What are Validation Annotations?

767


When will the .net framework 3.0 be released?

711


Explain something about model, view and controllers in asp.net mvc?

749


What are the Core features of ASP.NET MVC?

799


How to change the action name in ASP.Net MVC?

772


What is difference between razor and web form engine?

744


What is work of clr?

774


List the new features added in .net framework 4.0.

694


What is layout in mvc?

742


what do you mean by table-per-type?

821


What is MVVM design pattern?

783


Explain the new features 3.5 framework against with the tool?

693


what is datacontrols?

3375