how to return morethan one value using out parameter in c#.net ;
For Example : public int show(out int []a)
{
int []a={1,2,3,4,5};
return a[];
}
we have to print all the values without using the
Console.WriteLine statement;
Can you specify nested classes as partial classes?
Why do we use static class in c#?
Can we inherit static class in c#?
Difference between StackPanel and RelativePanel ?
Can mvc be used for desktop applications?
What is difference between throw and throws in c#?
What is the usage of Enumeration in C# Programming and is it good to use or not ?
Can multiple catch blocks be executed?
Is datetime nullable c#?
Contrast between an interface and abstract class?
Explain metadata in c#.
What is difference between for and foreach loop in c#?