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.

I have a concrete class that contains a collection of another concrete class. I would like to expose both classes via interfaces, but I am having trouble figuring out how I can expose the Collection<ConcreteType> member as a Collection<Interface> member.

I am currently using .NET 2.0

The code below results in a compiler error: Cannot implicitly convert type 'System.Collections.ObjectModel.Collection<Nail>' to 'System.Collections.ObjectModel.Collection<INail>'

The commented attempt to cast give this compiler error: Cannot convert type 'System.Collections.ObjectModel.Collection<Nail>' to 'System.Collections.ObjectModel.Collection<INail>' via a reference conversion, boxing conversion, unboxing conversion, wrapping conversion, or null type conversion.

Is there any way to expose the collection of concrete types as a collection of interfaces or do I need to create a new collection in the getter method of the interface?

using System.Collections.ObjectModel;

public interface IBucket
{
    Collection<INail> Nails
    {
        get;
    }
}

public interface INail
{
}

internal sealed class Nail : INail
{
}

internal sealed class Bucket : IBucket
{
    private Collection<Nail> nails;

    Collection<INail> IBucket.Nails
    {
        get
        {
            //return (nails as Collection<INail>);
            return nails;
        }
    }

    public Bucket()
    {
        this.nails = new Collection<Nail>();
    }
}
share|improve this question
You may like to read the series of articles here: blogs.msdn.com/ericlippert/archive/tags/… – Noon Silk Aug 26 '09 at 2:38

9 Answers

up vote 0 down vote accepted

C# doesn't support generic collections covariance (it's only supported for arrays). I use an adapter class in such cases. It just redirects all calls to the actual collection, converting values to the required type (doesn't require copying all list values to the new collection). Usage looks like this:

Collection<INail> IBucket.Nails
{
    get
    {
        return new ListAdapter<Nail, INail>(nails);
    }
}

    // my implementation (it's incomplete)
    public class ListAdapter<T_Src, T_Dst> : IList<T_Dst>
{
	public ListAdapter(IList<T_Src> val)
	{
		_vals = val;
	}

	IList<T_Src> _vals;

	protected static T_Src ConvertToSrc(T_Dst val)
	{
		return (T_Src)((object)val);
	}

	protected static T_Dst ConvertToDst(T_Src val)
	{
		return (T_Dst)((object)val);
	}

	public void Add(T_Dst item)
	{
		T_Src val = ConvertToSrc(item);
		_vals.Add(val);
	}

	public void Clear()
	{
		_vals.Clear();
	}

	public bool Contains(T_Dst item)
	{
		return _vals.Contains(ConvertToSrc(item));
	}

	public void CopyTo(T_Dst[] array, int arrayIndex)
	{
		throw new NotImplementedException();
	}

	public int Count
	{
		get { return _vals.Count; }
	}

	public bool IsReadOnly
	{
		get { return _vals.IsReadOnly; }
	}

	public bool Remove(T_Dst item)
	{
		return _vals.Remove(ConvertToSrc(item));
	}

	public IEnumerator<T_Dst> GetEnumerator()
	{
		foreach (T_Src cur in _vals)
			yield return ConvertToDst(cur);
	}

	IEnumerator IEnumerable.GetEnumerator()
	{
		return this.GetEnumerator();
	}

	public override string ToString()
	{
		return string.Format("Count = {0}", _vals.Count);
	}

	public int IndexOf(T_Dst item)
	{
		return _vals.IndexOf(ConvertToSrc(item));
	}

	public void Insert(int index, T_Dst item)
	{
		throw new NotImplementedException();
	}

	public void RemoveAt(int index)
	{
		throw new NotImplementedException();
	}

	public T_Dst this[int index]
	{
		get { return ConvertToDst(_vals[index]); }
		set { _vals[index] = ConvertToSrc(value); }
	}
}
share|improve this answer
That kind of looks like overkill at this point.... – RCIX Aug 26 '09 at 5:26
It's overkill if you only need it once, but this class makes life easier when you need covariance more oftenly. – skevar7 Aug 26 '09 at 5:27
Cool, I think this is exactly what I need! – jameswelle Aug 28 '09 at 21:21

C# 3.0 generics are invariant. You can't do that without creating a new object. C# 4.0 introduces safe covariance/contravariance which won't change anything about read/write collections (your case) anyway.

share|improve this answer

Just define nails as

Collection<INail>
share|improve this answer
1  
It is a solution but if you want a collection of Nail object only, it is a problem because every object implementing INail could be added in the collection. – Francis B. Aug 26 '09 at 2:42
I would live with this until C#4. Of course this is up to the original poster. – ChaosPandion Aug 26 '09 at 2:45
1  
I should have mentioned that these classes are serialized using the XmlSerializer, which is why the collection has to be defined as Collection<Nail> and not Collection<INail>. – jameswelle Aug 26 '09 at 4:01

Why not just return it as an interface, just have all your public methods in the interface, that way you don't have this problem, and, if you later decide to return another type of Nail class then it would work fine.

share|improve this answer

It's the age-old issue that C# 3.0 and down doesn't support co-variance; you need to cast nails to INail for it to compile. C# 4.0 will address this.

share|improve this answer
Casting nails to Collection<INail> doesn't compile. I mentioned this in the original question. – jameswelle Aug 26 '09 at 4:01
You mention boxing, not Casting (see my answer for the difference in this case) – johnc Aug 26 '09 at 4:25
Are you saying that the (nails as Collection<INail>) is a boxing operation, not a casting operation? msdn.microsoft.com/en-us/library/cscsdfbt%28VS.71%29.aspx – jameswelle Aug 26 '09 at 4:33
It is my understanding that boxing occurs on value types, which are not used here. – jameswelle Aug 26 '09 at 4:36
Unless I am wrong about Collection<T> (as I said I can't test here) there should be an implicit Cast<T> function on the collection. There certainly is on a List<T> – johnc Aug 26 '09 at 4:38
show 4 more comments

What version of .Net are you using?

If you are using .net 3.0+, you can only achieve this by using System.Linq.

Check out this question, which solved it for me.

share|improve this answer
I am using .Net 2.0 – jameswelle Aug 26 '09 at 4:08

you could use the Cast extension

nails.Cast<INail>()

I can't test it here to provide a more comprehensive example, as we are using .NET 2.0 at work (gripe gripe), but I did have a similar question here

share|improve this answer

There is one solution that might not be quite what you are asking for but could be an acceptable alternative -- use arrays instead.

internal sealed class Bucket : IBucket
{
    private Nail[] nails;

    INail[] IBucket.Nails
    {
        get { return this.nails; }
    }

    public Bucket()
    {
        this.nails = new Nail[100];
    }
}

(If you end up doing something like this, keep in mind this Framework Design Guidelines note: generally arrays shouldn't be exposed as properties, since they are typically copied before being returned to the caller and copying is an expensive operation to do inside an innocent property get.)

share|improve this answer

use this as the body of your property getter:

List<INail> tempNails = new List<INail>();
foreach (Nail nail in nails)
{
    tempNails.Add(nail);
}
ReadOnlyCollection<INail> readOnlyTempNails = new ReadOnlyCollection<INail>(tempNails);
return readOnlyTempNails;

That is a tad bit of a hacky solution but it does what you want.

Edited to return a ReadOnlyCollection. Make sure to update your types in IBucket and Bucket.

share|improve this answer
I think this is what I will have to do, but I will return a ReadOnlyCollection since adding to the returned collection won't affect the original. – jameswelle Aug 26 '09 at 4:32
There, fixed. – RCIX Aug 26 '09 at 4:43

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.