C# Program that read array display the smallest integer and sort the array in ascending order by using Array.Sort method.
C# Program that read array display the smallest integer and sort the array in ascending order by using Array.Sort method.
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TEST2
{
class Program
{
static void Main(string[] args)
{
int[] s = new int[10];……….continue code for click here….