Free C#, .Net and Sql server video tutorial for beginners and intermediate programmers.
what if we want country name with min length?
string a = countries.Aggregate((cur, min) => min.Length < cur.Length ? min : cur);Console.WriteLine(a);
It would be great if you can help share these free resources
what if we want country name with min length?
ReplyDeletestring a = countries.Aggregate((cur, min) => min.Length < cur.Length ? min : cur);
ReplyDeleteConsole.WriteLine(a);