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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T10:38:42+00:00 2026-05-27T10:38:42+00:00

I was doing homework in C# that required sorting an array. I could sort

  • 0

I was doing homework in C# that required sorting an array. I could sort an array of integers using

Array.sort<int>(a, delegate(int x, int y) { return y-x;});

However if i want to do it from certain position and certain length

Array.sort<int>(a, 0, m, delegate(int x, int y) { return y-x;});

I get compilation error: “Cannot convert anonymous method to type ‘System.Collections.Generic.IComparer’ because it is not a delegate type”.
I have solved the problem just by using

Array.sort<int>(a, 0, m);

and doing all other stuff backwards. Why it was giving me an error, and how can change it to work?

Thanks for help

  • 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-27T10:38:43+00:00Added an answer on May 27, 2026 at 10:38 am

    The method the first example is calling has the signature:

    Array.Sort(int[] array, Comparison<int> comparison) 
    

    The delegate you are using is for the Comparison. There is not an overload of Array.Sort that has a index, length and Comparison.

    The method you are trying to call has the following signature:

    Array.Sort(int[] array, int index, int length, IComparer<int> comparer) 
    

    Note IComparer, not Comparison

    If you need custom sorting. You will need to create a class that implements IComparer as this is what the 4th parameter is expecting.

    Alternatively, try the .OrderByDescending extension method which is available when you include using System.Linq;

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

Sidebar

Related Questions

I want to list all integers that divide n. This is a homework question.
I'm doing a homework project that requires this: Below you will find the code
I am doing a homework assignment that deals with classes and objects. In it,
This is a homework problem that I have. I have been doing some research
Just want to ensure you that it is not a homework question. I am
I am doing a homework assignment that reads in a book. First, a line
I've got a c homework problem that is doing my head in and will
I'm a college student doing a Java homework. I've created this program that allows
I am doing a homework assignment that involves writing a program to draw shapes
I'm doing some homework with LDAP that consists of creating LDIF files, adding them

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.