Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 651985
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T22:13:18+00:00 2026-05-13T22:13:18+00:00

I have an interface: public interface IMyInterface { } I have a class which

  • 0

I have an interface:

public interface IMyInterface { }

I have a class which implements the interface:

public class MyClass : IMyInterface { }

I have a function which asks for an IEnumerable of IMyInterface:

private void TestFunction(IEnumerable<IMyInterface> collectie) { }

I can’t figure out why this doesn’t work:

ObservableCollection<MyClass> myClasses = new ObservableCollection<MyClass>();
TestFunction(myClasses); // this line doesn't work

An ObservableCollection is an IEnumerable, right?

And my class does implement, right?

So why doesn’t this work?

It gives this 2 errors:

Error 1 The best overloaded method
match for
‘WindowsFormsApplication1.Form1.TestFunction(System.Collections.Generic.IEnumerable)’
has some invalid
arguments C:\spike\spike_rtf\WindowsFormsApplication1\Form1.cs 59 4 WindowsFormsApplication1
Error 2 Argument ‘1’: cannot convert
from
‘System.Collections.ObjectModel.ObservableCollection’
to
‘System.Collections.Generic.IEnumerable’ C:\spike\spike_rtf\WindowsFormsApplication1\Form1.cs 59 17 WindowsFormsApplication1

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T22:13:18+00:00Added an answer on May 13, 2026 at 10:13 pm

    You’re after generic variance. This will be supported in .NET 4.0 and C# 4.0, only for interfaces and delegates (and only where appropriate). That’s okay for your case though as you’re interested in the IEnumerable<T> interface which becomes IEnumerable<out T> in .NET to indicate its covariance.

    The simplest way to do this in .NET 3.5 is probably to use Cast<>:

    TestFunction(myClasses.Cast<IMyInterface>());
    

    (This is like User Friendly’s “Select” suggestion, but a bit simpler. It’s also worth knowing about for cases where it wouldn’t work in C# 4 – if you happen to know that every item in a collection will be of the right type, but you can’t express that in the type system.)

    To find out (a lot) more about this, see Eric Lippert’s blog posts on the topic. Be prepared for your mind to melt – I know mine does when I think about variance too hard. Eric has written various answers on this topic here on Stack Overflow too, including this one suggested in the comments.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 401k
  • Answers 401k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer In you main function, rather than calling ServiceBase.Run(servicesToRun), just run… May 15, 2026 at 4:34 am
  • Editorial Team
    Editorial Team added an answer You can automatically restart your closed app Activity after a… May 15, 2026 at 4:34 am
  • Editorial Team
    Editorial Team added an answer System::Convert::ToDouble(TextBox1->Text) You said you're trying to convert a System::String^ so… May 15, 2026 at 4:34 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.