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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T08:17:45+00:00 2026-06-01T08:17:45+00:00

This had me pulling my hair out for a couple days: byte[] _A =

  • 0

This had me pulling my hair out for a couple days:

byte[] _A = new byte[64];
// Fill _A with some meaningful, valid data.

byte[] _B = new byte[_A.Length];
_A.CopyTo( _B, 0 );

if( !_A.Equals( _B ) ) {
    throw new WtfException(
        "It appears object.Equals doesn't work on arrays of value types...");
}

Yes, that throws the WtfException. It took me a few days to notice. byte is a ValueType. However, byte[] is a System.Array, which is a reference type. As per the .NET documenation:

The default implementation of Equals supports reference equality for
reference types, and bitwise equality for value types. Reference
equality means the object references that are compared refer to the
same object. Bitwise equality means the objects that are compared have
the same binary representation.

Can anybody 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-06-01T08:17:47+00:00Added an answer on June 1, 2026 at 8:17 am

    _A and _B are not references to the same array. Thus, they are not equal. You need to make something like this:

    private static bool ValueTypeArraysAreEqual( Array p_lhs, Array p_rhs ) {
    if( p_lhs == null ) {
    return p_rhs == null;
    }
    if( p_rhs == null ) {
    return false;
    }
    if( p_lhs.Length != p_rhs.Length ) {
    return false;
    }
    return Parallel.For( 0, p_lhs.Length, ( _lcv, loopState ) => {
    if( !p_lhs.GetValue( _lcv ).Equals( p_rhs.GetValue( _lcv ) ) ) {
    loopState.Break();
    }
    } ).IsCompleted;
    }
    

    you can use object.Equal in the loops because you can compare the ValueTypes that the Loop contains. The use of System.Threading.Tasks.Parallel helps me move things along a little quicker. Parallel.For returns an struct that tells you whether the loop was halted. If you never halted the loop with loopState.Break, then they all matched. If, for some reason, you can’t use Parallel.For, just do a for loop that returns false;

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

Sidebar

Related Questions

This one has had me pulling out my hair. I've been trying to deserialize
I am pulling my hair out trying to figure this out because I had
I am pulling my hair out. I had this working earlier. My confirm.php checks
I'm pulling my hair out on this problem. I would like to show a
I've been pulling my hair out trying to solve this problem. We support IE8
I've been pulling my hair out over some unexpected behavior from nullable integers. If
I'm pulling my hair out on this one. I'm trying to implement a ADO.Net
This problem of mine has me pulling my hair out. It's related to the
I'm currently pulling my hair out solving this bug :/ I have already tried
I am really pulling my hair out with this one. Flash game, container swf

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.