Monday 10 September 2012

How to find Find duplicate value in Array.


using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace WebApplication4
{
    public partial class _Default : System.Web.UI.Page
    {
        int[] a = new int[5] { 1, 2, 2, 3, 4};


        protected void Page_Load(object sender, EventArgs e)
        {
            int b = 0;
            for (int i = 0; i != (a.Length); i++)
            {

                if (a[i] == 2)
                {
                    b++;
                    Label2.Text = Convert.ToString(b);
                }

                Label1.Text = Label1.Text + " " + a[i];
            }

        }
    }
}

No comments:

Post a Comment