Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can we eatablish any relation between two lists?I just want to query the list and find the related result from other list.Please suggest some idea

class GeneralClass
    {
        //public List<int> Student_RollNumber = new List<int>();
        //public List<string> Student_Name = new List<string>();
        private List<int> _student_rollnumber = new List<int>();
        private List<string> _student_name = new List<string>();
        public List<int> Student_RollNumber
        {
            get { return _student_rollnumber; }
            set { _student_rollnumber = value; }
        }
        public List<string> Student_Name
        {
            get { return _student_name; }
            set { _student_name = value; }
        }
    }
private void btn_save_Click(object sender, EventArgs e)
        {
            try
            {
                obj.Student_RollNumber.Add(int.Parse(txtbx_rollnum.Text));
                obj.Student_Name.Add(txtbx_SName.Text);
                MessageBox.Show("Data saved");
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Message from form");
            }
        }
        private void button2_Click(object sender, EventArgs e)
        {
            try
            {
               var result = obj.Student_Name.Contains(txtbx_find.Text).ToString();
              MessageBox.Show(result.ToString());
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }

Here i want the Student name when i search for Rollnumber.Can we have multiple column's in a List.

share|improve this question

1 Answer

Why not creating a new custom class and use it as the Generic Parameter?

class Student
{
  public Student(int rollNumber, string name)
  {
    Name = name;
    RollNumber = rollNumber;
  }

  public string Name { get; private set; }
  public int RollNumber { get; private set; }
}

class GeneralClass
{
  private List<Student> students = new List<Student>();
  public List<Student> Students
  {
    get { return students; }
  }
}

private void btn_save_Click(object sender, EventArgs e)
{
  try
  {
    int rollNumber = int.Parse(txtbx_rollnum.Text);
    string name = txtbx_SName.Text;
    obj.Add(new Student(rollNumber, name));
    MessageBox.Show("Data saved");
   }
   catch (Exception ex)
   {
     MessageBox.Show(ex.Message, "Message from form");
   }
}
share|improve this answer
Thank u very much.It's working.... :-) – Jai Ganesh Sep 14 '10 at 11:39
I suggest you go over your questions and mark those that answered as answered. – Itay Sep 14 '10 at 12:01
Hi Can u explain me why you have written – Jai Ganesh Sep 15 '10 at 3:56
<pre> public string Name { get; private set; } public int RollNumber { get; private set; } </pre> – Jai Ganesh Sep 15 '10 at 3:57
for setting y u have taken private. – Jai Ganesh Sep 15 '10 at 3:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.