vote up 2 vote down star
public class Item
{
        private int  _rowID;
        private Guid _itemGUID;

        public Item() { }

        public int Rid
        {
            get
            {
                return _rowID;
            }
            set {  }

        }

        public Guid IetmGuid
        {
            get
            {
                return _itemGuid;
            }
            set
            {
                _itemGuid= value;
            }

        }

}

The above is my custom object.

I have a list:

List<V> myList = someMethod;

where V is of type Item, my object.

I want to iterate and get the properties as such

foreach(V element in mylist)
{
   Guid test = element.IetmGuid; 
}

When I debug and look at the 'element' object I can see all the properties in the 'Quickwatch' but I cannot do element.IetmGuid.

flag
Why do you have "ItemGuid.set" emtpy? It's look as very bad design. – TcKs Nov 12 '08 at 15:11
What do you mean by cannot do element.letmGuid? What happens? – Daniel M Nov 12 '08 at 15:13
The error I get is V does not contain a definition for IetmGuid – Mat Nov 12 '08 at 15:16
Tcks: The Set is empty as I want to serialize this with read only property but no setters and this seems to work. – Mat Nov 12 '08 at 15:17
why don't you declare the list as List<Item>? – sebastian Nov 12 '08 at 15:18
show 2 more comments

5 Answers

vote up 3 vote down

Hi John,

Try declaring your list like this:

List<Item> myList = someMethod;
link|flag
+1, I don't see why he's using V when the class is called Item. – Kon M Nov 12 '08 at 15:23
fallen888:I want to be able to build a list of Items or User objects. Both are populated by stored procs and the base table for each have IetmGuid,so based on run tim I can either do List<Item> or List<User> and hence the choice of List<V> where V is determined at run time for Item/User – Mat Nov 12 '08 at 15:26
But is a user an item or an item a user? If they share a common interface you can break it out. – Will Nov 12 '08 at 15:40
@John, then you'll have to cast and do a null check as suggested in another answer here. :) – Kon M Nov 12 '08 at 15:48
Yeah, that kind of defeats the purpose of typed lists. You need to either express some relationship between an "Item" and a "User" in your code (through either inheritance or an interface) or use two separate lists. – Joel Coehoorn Nov 12 '08 at 15:49
vote up 3 vote down

Are you putting a constraint on the generic type V? You'll need to tell the runtime that V can be any type that is a subtype of your Item type.

public class MyGenericClass<V>
  where V : Item  //This is a constraint that requires type V to be an Item (or subtype)
{
  public void DoSomething()
  {
    List<V> myList = someMethod();

    foreach (V element in myList)
    {
      //This will now work because you've constrained the generic type V
      Guid test = element.IetmGuid;
    }
  }
}

Note, it only makes sense to use a generic class in this manner if you need to support multiple kinds of Items (represented by subtypes of Item).

link|flag
I did this public class MygenericClass<V>where V:new() – Mat Nov 12 '08 at 15:22
That's only requiring that type V have a parameterless constructor. If you always want to use the generic type V as an Item (or subtype), you should constrain the type as I showed above. – akmad Nov 12 '08 at 15:30
akmad: Say if I always required that type V have a parameterless constructor. would my approach work? – Mat Nov 12 '08 at 15:52
vote up 1 vote down
foreach( object element in myList ) {
    Item itm = element as Item;
    if ( null == itm ) { continue; }
    Guid test = itm.ItemGuid;
}
link|flag
vote up 1 vote down

Why do you keep spelling it IetmGuid here?

link|flag
vote up 0 vote down

Your list should be declared like this:

List<V> myList = someMethod;

Where V is the type item.

and then your iteration was correct:

foreach(V element in myList)
{
    Guid test = element.IetmGuid;
}
link|flag
Sorry about the formatting, I do have it declared as List<V> myList = someMethod The error I get is V does not contain a definition for IetmGuid I guess I want to determine the property at run time and V is not declared until runtime – Mat Nov 12 '08 at 15:15

Your Answer

Get an OpenID
or

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