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 7949129
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T01:54:25+00:00 2026-06-04T01:54:25+00:00

I am trying to filter a list of Chord objects (class) in C# using

  • 0

I am trying to filter a list of Chord objects (class) in C# using linq.

I have the following function in my class

public List<Chord> FilterDictionary_byKey<Chord>(string theKey)
{
    var filteredList = from item in _chords
                       where item.KeyName == theKey
                       select item;

    return (List<Chord>)filteredList;
}

in the above Chord is an object type, _chords is a class variable of List type.

then from my calling code I tried the following:

List<Chord> theChords = globalVariables.chordDictionary.FilterDictionary_byKey("A");

obviously trying to return a filtered list of Chord objects from the class

however, when i compile the compiler returns

Error 1 The type arguments for method ‘ChordDictionary.chordDictionary.FilterDictionary_byKey(string)’ cannot be inferred from the usage. Try specifying the type arguments explicitly. C:\Users\Daniel\Development\Projects\Tab Explorer\Tab Explorer\Forms\ScaleAndChordViewer.cs 75 37 Tab Explorer

  • 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-06-04T01:54:27+00:00Added an answer on June 4, 2026 at 1:54 am

    The inferred type of a from…select LINQ query is actually an IEnumerable<T>, which is not a populated list or collection, but a sequence that will be enumerated on demand. Casting it to List<T> does not cause this enumeration; instead, you should call ToList() or ToArray().

    To address the error you’re getting: Your method declaration should not have a generic type parameter, since neither its return type nor any of its parameters are generic. Just remove the <Chord> following the method name.

    public List<Chord> FilterDictionary_byKey(string theKey)
    {
        var filteredList = from item in _chords
                           where item.KeyName == theKey
                           select item;
    
        return filteredList.ToList();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to filter a list of objects using linq. When i filter by
Using LINQ to entities, I'm trying to filter a list based on another list.
I'm trying to filter by a list of values using the criteria API. I
I am trying to write a function that will filter a list of tuples
I am trying to use a linq expression to filter a list in a
I am trying to filter stop-words from the following documents using package tm .
I am trying to filter a list of items using the .Where method, and
I have a list of emails and domains which I am trying to filter
I have a LINQ result set I'm trying to filter in a strange and
I'm trying to filter the User list in Django using a UserProfile Field... I

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.