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
Which filter executes first in an asp.net mvc application?
Describe the roles of clr in .net framework.?
What are Validation Annotations?
When will the .net framework 3.0 be released?
Explain something about model, view and controllers in asp.net mvc?
What are the Core features of ASP.NET MVC?
How to change the action name in ASP.Net MVC?
What is difference between razor and web form engine?
What is work of clr?
List the new features added in .net framework 4.0.
What is layout in mvc?
what do you mean by table-per-type?
What is MVVM design pattern?
Explain the new features 3.5 framework against with the tool?
what is datacontrols?