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

  • Home
  • SEARCH
  • 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 9221579
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T03:36:34+00:00 2026-06-18T03:36:34+00:00

I need to call the following function : static string GetValueOrDefault(object[] values, int index)

  • 0

I need to call the following function :

static string GetValueOrDefault(object[] values, int index)
{
    if (values == null)
         return string.Empty;
    if (index >= values.Length)
         return string.Empty;
    return values[index] != null ? values[index].ToString() : string.Empty;
}

When I call GetValueOrDefault with an array of strings (ReferenceType), it works :

GetValueOrDefault(new[] {"foo", "bar"}, 0);

When I call GetValueOrDefault with an array of int (ValueType), it doesn’t work :

GetValueOrDefault(new[] {1, 2}, 0);

The compiler error is :

The best overloaded method match for
MyNamespace.GetValueOrDefault(object[], int)’ has some invalid
arguments

So my question is : Why this doesn’t compile as reference types and value type derive from object ?

I know I can solve this problem using generics, but I want to understand this error

static string GetValueOrDefault<T>(T[] values, int index)
{...}

Thanks in advance

  • 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-18T03:36:34+00:00Added an answer on June 18, 2026 at 3:36 am

    Arrays of reference-types are covariant, meaning: a string[] can be treated as an object[] (although the gotcha is that if you try to put a non-string in, it will throw). However, arrays of value-types are not covariant, so an int[] cannot be treated as an object[]. new[] {1,2} is an int[].

    IIRC this was done mainly for similarity with java. The covariance in .NET 4.0 is much tidier.

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

Sidebar

Related Questions

I need to call a static function from an object using the Singleton design,
I need to call a function in the following fashion: var f = 'fadeOut';
In external (Delphi-created) DLL I've got the following function that I need to call
I need to call a wrapped function from a C++ DLL with the following
I need to call a json script using curl terminal. following is the path
Need to call a filter function on some options based on a radio selected
I need to call a method and pass an object from my custom UITableViewClass
I need to call some jQuery .load() function from flash. i Use this: import
I need to call a JS function with a C# parameter. This is inside
I need to call a library function that sometimes won't terminate within a given

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.