Windows Vista Forums

Collections Help when in a parent class

  1. #1


    scott ocamb Guest

    Collections Help when in a parent class

    All,



    I have a Form Class, shown below that will have a collection of Question
    objects.

    The Question Class has an Approve method.

    When any single Question is approved, I need to know if all Questions in the
    Collection in the Form are approved.

    A single Question does not know about the collection it is part of in the
    form.

    Any impelemtation suggestions would be appreciated.

    public class Form

    {

    private List<Question> _questions = new List<Question>();

    }





      My System SpecsSystem Spec

  2. #2


    Cor Ligthert[MVP] Guest

    Re: Collections Help when in a parent class

    scott,

    That is exactly for what the for and foreach methods are.

    You can use Linq as well to select all not approved questions and if that
    returns null you know that it is done.

    (I would use a simple foreach in this case, behind the scene it will be sure
    be used by Linq)

    Cor

    "scott ocamb" <socamb@xxxxxx> schreef in bericht
    news:uz37qCvtIHA.1220@xxxxxx

    > All,
    >
    > I have a Form Class, shown below that will have a collection of Question
    > objects.
    >
    > The Question Class has an Approve method.
    >
    > When any single Question is approved, I need to know if all Questions in
    > the Collection in the Form are approved.
    >
    > A single Question does not know about the collection it is part of in the
    > form.
    >
    > Any impelemtation suggestions would be appreciated.
    >
    > public class Form
    >
    > {
    >
    > private List<Question> _questions = new List<Question>();
    >
    > }
    >
    >
    >
    >

      My System SpecsSystem Spec

Collections Help when in a parent class

Similar Threads
Thread Thread Starter Forum Replies Last Post
Moving from class C to class B ip address scheme, any tips(DC/DNS) markm75g Server General 1 14 Feb 2010
When a class is both an inherited class of another, and alsoimplements an interface method Curious .NET General 1 14 Aug 2009
System.Collections.Generic.List<int> myList = new System.Collections.Generic.List<int>(100); DR .NET General 1 09 Apr 2008
Generics and collections Martin Robins .NET General 8 05 Apr 2008
Confused getting properties of Collections of one vs. many =?Utf-8?B?TWlrZSBCcmlkZ2U=?= bridgecanada _ com> PowerShell 19 04 Sep 2006