Horje
list.max c# Code Example
list.max c#

var list = new List<int> { 1, 2, 3, 4, 5, 6, 7, 16, 17 };  
Console.WriteLine("MAX=>" + list.Max(z => z));  
Console.WriteLine("MIN=>" + list.Min(z => z));  




Csharp

Related
c# filter non alphanumeric characters Code Example c# filter non alphanumeric characters Code Example
c# thread sleep Code Example c# thread sleep Code Example
unity add explosion force Code Example unity add explosion force Code Example
start new form c# Code Example start new form c# Code Example
move file from one folder to another c# Code Example move file from one folder to another c# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9