I need to find the minimum of 5 integer values. i have used if else statement to compare. So its not looking good. i.e. code is very lengthy. I dont know how to reduce the code complexity. can anyone help me out?
Regards, Karthi
|
I need to find the minimum of 5 integer values. i have used if else statement to compare. So its not looking good. i.e. code is very lengthy. I dont know how to reduce the code complexity. can anyone help me out? Regards, Karthi |
|||
|
|
|
You can use
Here is the list of LINQ http://msdn.microsoft.com/en-us/library/system.linq.enumerable.min.aspx |
|||
|
|
You can use the
Some other options that may be more readable (and scaleable), but not quite as efficient:
|
|||||||
|