Sep 19, 2011
You can find largest values from array easily by using some C# programming tricks. Just pick the value one by one from array and match it with previous largest values. At the end of iteration you will get the largest values.
Sep 18, 2011
There are two ways to reversing a string using array in C# programming. The first way is manual way in which you can write code by your own way to reverse string and other one is using the predefined Reverse array function.
Sep 18, 2011
It is very easy to pass multi dimensional array as parameter or argument in C# programming. You can just pass it as you pass integer variable to a function.
Sep 17, 2011
It is very easy to pass single dimensional array as parameter or argument in C#. You can pass single dimensional array as parameter simply as you pass a variable as parameter in function.
Sep 15, 2011
In order to return multiple output values from a single function in C#, the out keyword is used. It makes able to a function to return multiple values in same time.
Sep 14, 2011
Checked and unchecked statement checks the integral-type arithmetic overflow exception. If you want to ignore arithmetic overflow exception then you can write you code under the unchecked block. By default C# takes arithmetic operation as checked.